mirror of
https://github.com/rust-lang/rust.git
synced 2025-09-28 21:55:31 +00:00

``` error[E0610]: `{integer}` is a primitive type and therefore doesn't have fields --> $DIR/attempted-access-non-fatal.rs:7:15 | LL | let _ = 2.l; | ^ | help: if intended to be a floating point literal, consider adding a `0` after the period and a `f64` suffix | LL - let _ = 2.l; LL + let _ = 2.0f64; | ```
19 lines
452 B
Plaintext
19 lines
452 B
Plaintext
error[E0308]: mismatched types
|
|
--> $DIR/partialeq_suggest_swap.rs:10:13
|
|
|
|
|
LL | 4i32 == T(4);
|
|
| ---- ^^^^ expected `i32`, found `T`
|
|
| |
|
|
| expected because this is `i32`
|
|
|
|
|
= note: `T` implements `PartialEq<i32>`
|
|
help: consider swapping the equality
|
|
|
|
|
LL - 4i32 == T(4);
|
|
LL + T(4) == 4i32;
|
|
|
|
|
|
|
error: aborting due to 1 previous error
|
|
|
|
For more information about this error, try `rustc --explain E0308`.
|