blob: 65b598d03bdef5337c367cd7a6c8a0c2c8cd9aa4 [file] [log] [blame] [edit]
//! regression test for https://github.com/rust-lang/rust/issues/22644
fn main() {
let a: usize = 0;
let long_name: usize = 0;
println!("{}", a as usize > long_name);
println!("{}", a as usize < long_name); //~ ERROR `<` is interpreted as a start of generic
println!("{}{}", a as usize < long_name, long_name);
//~^ ERROR `<` is interpreted as a start of generic
println!("{}", a as usize < 4); //~ ERROR `<` is interpreted as a start of generic
println!("{}", a
as
usize
< //~ ERROR `<` is interpreted as a start of generic
4);
println!("{}", a
as
usize
< //~ ERROR `<` is interpreted as a start of generic
5);
println!("{}", a as usize << long_name); //~ ERROR `<<` is interpreted as a start of generic
}