Open
Description
here's my reasoning:
1ǃ=2 // U+1C3 inserted here
errors with the wrong message:
error: invalid suffix `ǃ` for number literal
--> src/main.rs:2:1
|
2 | 1ǃ=2
| ^^ invalid suffix `ǃ`
|
= help: the suffix must be one of the numeric types (`u32`, `isize`, `f32`, etc.)
error[E0070]: invalid left-hand side of assignment
--> src/main.rs:2:3
|
2 | 1ǃ=2
| --^
| |
| cannot assign to this expression
For more information about this error, try `rustc --explain E0070`.