rust/src/test
Steven Fackler 3dcd215740 Switch to purely namespaced enums
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-11-17 07:35:51 -08:00
..
auxiliary Switch to purely namespaced enums 2014-11-17 07:35:51 -08:00
bench Switch to purely namespaced enums 2014-11-17 07:35:51 -08:00
codegen librustc: Forbid private types in public APIs. 2014-09-22 20:05:45 -07:00
compile-fail Switch to purely namespaced enums 2014-11-17 07:35:51 -08:00
compile-fail-fulldeps Update code with new lint names 2014-10-28 08:54:21 -07:00
debuginfo Switch to purely namespaced enums 2014-11-17 07:35:51 -08:00
pretty Fix fallout from coercion removal 2014-11-17 22:41:33 +13:00
run-fail auto merge of #18877 : michaelsproul/rust/panic-tests, r=alexcrichton 2014-11-13 10:37:06 +00:00
run-make Switch to purely namespaced enums 2014-11-17 07:35:51 -08:00
run-pass Switch to purely namespaced enums 2014-11-17 07:35:51 -08:00
run-pass-fulldeps Switch to purely namespaced enums 2014-11-17 07:35:51 -08:00
run-pass-valgrind Move some tests to run-pass-valgrind 2014-10-23 13:52:34 +13:00