Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
const fn foo(x: u32) -> u32 {
x
}
fn main() {
const X: u32 = 0 - 1;
//~^ ERROR constant
const Y: u32 = foo(0 - 1);
println!("{} {}", X, Y);