blob: 0d14cf0f6d95117465bf2455870a2c96bc33a8e5 [file] [log] [blame]
// compile-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);
}
}