cargo/crates/rustfix/tests/everything/lt-generic-comp.fixed.rs

8 lines
88 B
Rust

fn main() {
let x = 5i64;
if (x as u32) < 4 {
println!("yay");
}
}