summary refs log tree commit diff
path: root/src/test/compile-fail/resolve-inconsistent-binding-mode.rs
AgeCommit message (Collapse)AuthorLines
2015-12-11Make name resolution errors non-fatalNick Cameron-0/+3
2015-01-08Update compile fail tests to use isize.Huon Wilson-1/+1
2014-11-17Switch to purely namespaced enumsSteven Fackler-8/+8
This breaks code that referred to variant names in the same namespace as their enum. Reexport the variants in the old location or alter code to refer to the new locations: ``` pub enum Foo { A, B } fn main() { let a = A; } ``` => ``` pub use self::Foo::{A, B}; pub enum Foo { A, B } fn main() { let a = A; } ``` or ``` pub enum Foo { A, B } fn main() { let a = Foo::A; } ``` [breaking-change]
2014-02-07Added tests to make tidyDerek Guenther-3/+6
2013-08-27librustc: Remove `&const` and `*const` from the language.Patrick Walton-7/+0
They are still present as part of the borrow check.
2013-05-30Fix parser testNiko Matsakis-1/+1
2012-12-10Reliciense makefiles and testsuite. Yup.Graydon Hoare-0/+10
2012-08-06s/alt/match/... again.Niko Matsakis-6/+6
2012-08-06make `ref x` bindings produce region ptrs and fix various minor bugsNiko Matsakis-0/+41
we now detect inconsistent modes, binding names, and various other errors. typeck/trans integration is mostly done. borrowck not so much. more tests needed.