rust/src/test/ui/issue-42954.stderr

14 lines
409 B
Plaintext
Raw Normal View History

error: `<` is interpreted as a start of generic arguments for `u32`, not a comparison
--> $DIR/issue-42954.rs:13:19
|
13 | $i as u32 < 0
| - ^ interpreted as generic argument
| |
| not interpreted as comparison
|
help: if you want to compare the casted value then write:
| ($i as u32) < 0
error: aborting due to previous error