Files
rust/tests/ui/consts/issue-3521.rs

14 lines
260 B
Rust
Raw Normal View History

//@ run-rustfix
2012-10-15 12:00:32 -07:00
fn main() {
#[allow(non_upper_case_globals)]
let foo: isize = 100;
2012-10-15 12:00:32 -07:00
2015-01-28 08:34:18 -05:00
#[derive(Debug)]
2012-10-15 12:00:32 -07:00
enum Stuff {
Bar = foo
//~^ ERROR attempt to use a non-constant value in a constant
2012-10-15 12:00:32 -07:00
}
println!("{:?}", Stuff::Bar);
2012-10-15 12:00:32 -07:00
}