mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-30 08:33:25 +00:00
9 lines
147 B
Rust
9 lines
147 B
Rust
const X: u32 = 5;
|
|
const Y: u32 = 6;
|
|
const FOO: u32 = [X - Y, Y - X][(X < Y) as usize];
|
|
//~^ ERROR constant
|
|
|
|
fn main() {
|
|
println!("{}", FOO);
|
|
}
|