mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-29 02:03:53 +00:00
12 lines
187 B
Rust
12 lines
187 B
Rust
const fn foo(x: u32) -> u32 {
|
|
x
|
|
}
|
|
|
|
fn main() {
|
|
const X: u32 = 0 - 1;
|
|
//~^ ERROR constant
|
|
const Y: u32 = foo(0 - 1);
|
|
//~^ ERROR constant
|
|
println!("{} {}", X, Y);
|
|
}
|