rust/src/compiletest
bors 13037a3727 auto merge of #17163 : pcwalton/rust/impls-next-to-struct, r=alexcrichton
type they provide an implementation for.

This breaks code like:

    mod foo {
        struct Foo { ... }
    }

    impl foo::Foo {
        ...
    }

Change this code to:

    mod foo {
        struct Foo { ... }

        impl Foo {
            ...
        }
    }

Closes #17059.

RFC #155.

[breaking-change]

r? @brson
2014-09-14 08:11:04 +00:00
..
common.rs debuginfo: Emit different autotest debugger scripts depending on GDB version. 2014-08-27 15:19:14 +02:00
compiletest.rs debuginfo: Improve GDB version handling in compiletest tool 2014-08-27 15:19:14 +02:00
errors.rs std: Rename the ToStr trait to ToString, and to_str to to_string. 2014-07-08 13:01:43 -07:00
header.rs debuginfo: Emit different autotest debugger scripts depending on GDB version. 2014-08-27 15:19:14 +02:00
procsrv.rs Fallout from stabilizing core::option 2014-08-28 09:12:54 -07:00
runtest.rs auto merge of #17163 : pcwalton/rust/impls-next-to-struct, r=alexcrichton 2014-09-14 08:11:04 +00:00
util.rs Remove stage0 attributes. 2014-08-23 02:11:07 -07:00