rustc/tests/ui/consts/issue-3521.rs
2023-08-02 10:33:26 +02:00

14 lines
259 B
Rust

// run-rustfix
fn main() {
#[allow(non_upper_case_globals)]
let foo: isize = 100;
#[derive(Debug)]
enum Stuff {
Bar = foo
//~^ ERROR attempt to use a non-constant value in a constant
}
println!("{:?}", Stuff::Bar);
}