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

8 lines
86 B
Rust

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