mirror of
https://git.proxmox.com/git/rustc
synced 2026-01-16 11:47:31 +00:00
10 lines
167 B
Plaintext
10 lines
167 B
Plaintext
//@ run-rustfix
|
|
fn main() {
|
|
let foo = 100;
|
|
|
|
let y: isize = foo + 1;
|
|
//~^ ERROR attempt to use a non-constant value in a constant
|
|
|
|
println!("{}", y);
|
|
}
|