blob: cea367528c975aa90370a636817b166eac3ac7d5 [file] [log] [blame]
// build-pass (FIXME(62277): could be check-pass?)
// if `X` were used instead of `x`, `X - 10` would result in a lint.
// This file should never produce a lint, no matter how the const
// propagator is improved.
#![deny(warnings)]
const X: u32 = 5;
fn main() {
let x = X;
if x > 10 {
println!("{}", x - 10);
} else {
println!("{}", 10 - x);
}
}