rust/tests/ui/issues/issue-22644.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

28 lines
835 B
Rust
Raw Normal View History

fn main() {
let a: usize = 0;
let long_name: usize = 0;
println!("{}", a as usize > long_name);
2017-11-20 12:13:27 +00:00
println!("{}", a as usize < long_name); //~ ERROR `<` is interpreted as a start of generic
println!("{}{}", a as usize < long_name, long_name);
2017-11-20 12:13:27 +00:00
//~^ 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
2017-11-20 12:13:27 +00:00
< //~ ERROR `<` is interpreted as a start of generic
4);
println!("{}", a
as
usize
2017-11-20 12:13:27 +00:00
< //~ ERROR `<` is interpreted as a start of generic
5);
println!("{}", a as usize << long_name); //~ ERROR `<<` is interpreted as a start of generic
}