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

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

87 lines
2.8 KiB
Plaintext
Raw Normal View History

error: `<` is interpreted as a start of generic arguments for `usize`, not a comparison
--> $DIR/issue-22644.rs:6:31
|
2019-03-09 12:03:44 +00:00
LL | println!("{}", a as usize < long_name);
| ^ --------- interpreted as generic arguments
| |
| not interpreted as comparison
|
help: try comparing the cast value
|
LL | println!("{}", (a as usize) < long_name);
| + +
error: `<` is interpreted as a start of generic arguments for `usize`, not a comparison
--> $DIR/issue-22644.rs:7:33
|
2018-02-23 00:42:32 +00:00
LL | println!("{}{}", a as usize < long_name, long_name);
| ^ -------------------- interpreted as generic arguments
| |
| not interpreted as comparison
|
help: try comparing the cast value
|
LL | println!("{}{}", (a as usize) < long_name, long_name);
| + +
error: `<` is interpreted as a start of generic arguments for `usize`, not a comparison
--> $DIR/issue-22644.rs:9:31
|
2019-03-09 12:03:44 +00:00
LL | println!("{}", a as usize < 4);
| ^ - interpreted as generic arguments
| |
| not interpreted as comparison
|
help: try comparing the cast value
|
LL | println!("{}", (a as usize) < 4);
| + +
error: `<` is interpreted as a start of generic arguments for `usize`, not a comparison
--> $DIR/issue-22644.rs:14:20
|
2019-03-09 12:03:44 +00:00
LL | <
| ^ not interpreted as comparison
2018-02-23 00:42:32 +00:00
LL | 4);
| - interpreted as generic arguments
|
2018-02-21 15:12:23 +00:00
help: try comparing the cast value
|
LL ~ println!("{}", (a
2018-02-24 23:01:39 +00:00
LL | as
LL ~ usize)
|
error: `<` is interpreted as a start of generic arguments for `usize`, not a comparison
--> $DIR/issue-22644.rs:23:20
|
2019-03-09 12:03:44 +00:00
LL | <
| ^ not interpreted as comparison
2018-02-23 00:42:32 +00:00
LL | 5);
| - interpreted as generic arguments
|
2018-02-21 15:12:23 +00:00
help: try comparing the cast value
|
LL ~ println!("{}", (a
2018-02-24 23:01:39 +00:00
LL |
...
2022-06-06 15:26:50 +00:00
LL |
LL ~ usize)
|
error: `<<` is interpreted as a start of generic arguments for `usize`, not a shift
--> $DIR/issue-22644.rs:26:31
|
2019-03-09 12:03:44 +00:00
LL | println!("{}", a as usize << long_name);
| ^^ --------- interpreted as generic arguments
| |
| not interpreted as shift
|
help: try shifting the cast value
|
LL | println!("{}", (a as usize) << long_name);
| + +
error: aborting due to 6 previous errors
2018-03-15 15:13:47 +00:00