mirror of
https://git.proxmox.com/git/rustc
synced 2025-06-03 07:38:11 +00:00
14 lines
259 B
Rust
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);
|
|
}
|