rust/src/librustc/middle
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
..
borrowck rustc: fix fallout from using ptr::P. 2014-09-14 04:20:34 +03:00
cfg rustc: fix fallout from using ptr::P. 2014-09-14 04:20:34 +03:00
save rustc: fix fallout from using ptr::P. 2014-09-14 04:20:34 +03:00
trans rustc: fix fallout from using ptr::P. 2014-09-14 04:20:34 +03:00
typeck auto merge of #17130 : jakub-/rust/issue-17033, r=pcwalton 2014-09-14 05:46:05 +00:00
astencode.rs rustc: fix fallout from using ptr::P. 2014-09-14 04:20:34 +03:00
check_const.rs rustc: fix fallout from using ptr::P. 2014-09-14 04:20:34 +03:00
check_loop.rs Track the visited AST's lifetime throughout Visitor. 2014-09-12 14:24:45 +03:00
check_match.rs rustc: fix fallout from using ptr::P. 2014-09-14 04:20:34 +03:00
check_rvalues.rs Track the visited AST's lifetime throughout Visitor. 2014-09-12 14:24:45 +03:00
check_static.rs rustc: fix fallout from using ptr::P. 2014-09-14 04:20:34 +03:00
const_eval.rs rustc: fix fallout from using ptr::P. 2014-09-14 04:20:34 +03:00
dataflow.rs Track the visited AST's lifetime throughout Visitor. 2014-09-12 14:24:45 +03:00
dead.rs rustc: fix fallout from using ptr::P. 2014-09-14 04:20:34 +03:00
def.rs middle: Derive Show impls 2014-07-15 18:54:47 -04:00
dependency_format.rs Fallout from the libcollections movement 2014-06-05 13:55:11 -07:00
effect.rs rustc: fix fallout from using ptr::P. 2014-09-14 04:20:34 +03:00
entry.rs rustc: fix fallout from using ptr::P. 2014-09-14 04:20:34 +03:00
expr_use_visitor.rs rustc: fix fallout from using ptr::P. 2014-09-14 04:20:34 +03:00
freevars.rs Track the visited AST's lifetime throughout Visitor. 2014-09-12 14:24:45 +03:00
graph.rs Implement generalized object and type parameter bounds (Fixes #16462) 2014-08-27 21:46:52 -04:00
intrinsicck.rs rustc: fix fallout from using ptr::P. 2014-09-14 04:20:34 +03:00
kind.rs rustc: fix fallout from using ptr::P. 2014-09-14 04:20:34 +03:00
lang_items.rs Track the visited AST's lifetime throughout Visitor. 2014-09-12 14:24:45 +03:00
liveness.rs rustc: fix fallout from using ptr::P. 2014-09-14 04:20:34 +03:00
mem_categorization.rs rustc: fix fallout from using ptr::P. 2014-09-14 04:20:34 +03:00
pat_util.rs rustc: fix fallout from using ptr::P. 2014-09-14 04:20:34 +03:00
privacy.rs rustc: fix fallout from using ptr::P. 2014-09-14 04:20:34 +03:00
reachable.rs rustc: fix fallout from using ptr::P. 2014-09-14 04:20:34 +03:00
region.rs rustc: fix fallout from using ptr::P. 2014-09-14 04:20:34 +03:00
resolve_lifetime.rs Track the visited AST's lifetime throughout Visitor. 2014-09-12 14:24:45 +03:00
resolve.rs auto merge of #17163 : pcwalton/rust/impls-next-to-struct, r=alexcrichton 2014-09-14 08:11:04 +00:00
stability.rs Track the visited AST's lifetime throughout Visitor. 2014-09-12 14:24:45 +03:00
subst.rs rustc: fix fallout from the addition of a 'tcx lifetime on tcx. 2014-09-08 15:28:23 +03:00
ty_fold.rs rustc: fix fallout from the addition of a 'tcx lifetime on tcx. 2014-09-08 15:28:23 +03:00
ty.rs rustc: fix fallout from using ptr::P. 2014-09-14 04:20:34 +03:00
weak_lang_items.rs Track the visited AST's lifetime throughout Visitor. 2014-09-12 14:24:45 +03:00