11 lines
111 B
Rust
11 lines
111 B
Rust
|
// xfail-test
|
||
|
fn main() {
|
||
|
let foo = 100;
|
||
|
|
||
|
enum Stuff {
|
||
|
Bar = foo
|
||
|
}
|
||
|
|
||
|
log(error, Bar);
|
||
|
}
|