mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 06:51:58 +00:00
11 lines
254 B
Plaintext
11 lines
254 B
Plaintext
error: invalid suffix `u` for number literal
|
|
--> $DIR/bad-literal.rs:6:5
|
|
|
|
|
LL | 1u;
|
|
| ^^ invalid suffix `u`
|
|
|
|
|
= help: the suffix must be one of the numeric types (`u32`, `isize`, `f32`, etc.)
|
|
|
|
error: aborting due to previous error
|
|
|