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
..
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-29 11:43:07 -04:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-29 23:24:04 -04:00
2014-10-21 23:52:00 -04:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-16 11:15:34 -04:00
2014-10-19 12:59:40 -07:00
2014-11-11 15:06:54 -08:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-29 11:43:07 -04:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-11-17 07:35:51 -08:00
2014-11-03 15:08:20 -08:00
2014-11-01 19:07:51 -07:00
2014-11-01 15:24:42 -07:00
2014-11-06 19:33:47 -08:00
2014-10-29 16:06:13 -04:00
2014-10-19 12:59:40 -07:00
2014-11-05 17:35:40 -08:00
2014-11-12 09:18:35 -08:00
2014-10-29 11:43:07 -04:00
2014-10-19 12:59:40 -07:00
2014-10-30 19:02:11 -07:00
2014-10-30 19:02:11 -07:00
2014-11-01 11:05:12 +13:00
2014-11-01 11:05:12 +13:00
2014-10-31 20:43:35 -07:00
2014-10-31 20:43:35 -07:00
2014-10-29 11:43:07 -04:00
2014-10-28 15:55:37 +11:00
2014-11-07 12:04:28 -08:00
2014-11-07 12:04:28 -08:00
2014-10-19 12:59:40 -07:00
2014-10-29 11:43:07 -04:00
2014-11-09 00:30:04 -08:00
2014-11-09 00:30:04 -08:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-10-19 12:59:40 -07:00
2014-11-03 15:08:20 -08:00
2014-11-03 15:08:20 -08:00
2014-10-19 12:59:40 -07:00
2014-11-02 11:55:58 -08:00
2014-10-31 20:43:35 -07:00
2014-10-29 11:43:07 -04:00
2014-11-17 07:35:51 -08:00