mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
12 lines
257 B
Plaintext
12 lines
257 B
Plaintext
error[E0369]: cannot add `u32` to `u32`
|
|
--> $DIR/bad-add-impl.rs:16:10
|
|
|
|
|
LL | 1u32 + 1u32;
|
|
| ---- ^ ---- u32
|
|
| |
|
|
| u32
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0369`.
|