
``` 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; | ```
14 lines
368 B
Text
14 lines
368 B
Text
error: expected one of `.`, `?`, `]`, or an operator, found `:`
|
|
--> $DIR/range-index-instead-of-colon.rs:4:17
|
|
|
|
|
LL | &[1, 2, 3][1:2];
|
|
| ^ expected one of `.`, `?`, `]`, or an operator
|
|
|
|
|
help: you might have meant a range expression
|
|
|
|
|
LL - &[1, 2, 3][1:2];
|
|
LL + &[1, 2, 3][1..2];
|
|
|
|
|
|
|
error: aborting due to 1 previous error
|
|
|