rust/src/librustc/metadata
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 Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
creader.rs auto merge of #17189 : bkoropoff/rust/extern-existing-crate, r=alexcrichton 2014-09-14 00:51:05 +00:00
csearch.rs rustc: fix fallout from using ptr::P. 2014-09-14 04:20:34 +03:00
cstore.rs
decoder.rs rustc: fix fallout from using ptr::P. 2014-09-14 04:20:34 +03:00
encoder.rs rustc: fix fallout from using ptr::P. 2014-09-14 04:20:34 +03:00
filesearch.rs librustc: Forbid inherent implementations that aren't adjacent to the 2014-09-13 02:07:39 -07:00
loader.rs librustc: Forbid inherent implementations that aren't adjacent to the 2014-09-13 02:07:39 -07:00
mod.rs
tydecode.rs rustc: fix fallout from the addition of a 'tcx lifetime on tcx. 2014-09-08 15:28:23 +03:00
tyencode.rs rustc: fix fallout from the addition of a 'tcx lifetime on tcx. 2014-09-08 15:28:23 +03:00