Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
const_prop
/
unreachable-overflow.rs
blob: 25cc3db77fd4791d688c267c41a92081094c4dcd [
file
] [
log
] [
blame
] [
edit
]
// Use `build-pass` to ensure const-prop lint runs.
//@ build-pass
fn
main
()
{
let
x
=
2u32
;
let
y
=
3u32
;
if
y
<=
x
{
dbg
!(
x
-
y
);
}
}