6 lines
107 B
Rust
6 lines
107 B
Rust
|
// xfail-test
|
||
|
|
||
|
const foo: int = 4 >> 1;
|
||
|
enum bs { thing = foo }
|
||
|
fn main() { assert(thing as int == foo); }
|