```
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;
|
```
|
||
|---|---|---|
| .. | ||
| issue-14933.rs | ||
| issue-37515.rs | ||
| issue-37515.stderr | ||
| issue-62263-self-in-atb.rs | ||
| issue-62263-self-in-atb.stderr | ||
| issue-62305-self-assoc-ty.rs | ||
| issue-62305-self-assoc-ty.stderr | ||
| issue-62364-self-ty-arg.rs | ||
| issue-62364-self-ty-arg.stderr | ||
| unresolved-assoc-ty-suggest-trait.eager.stderr | ||
| unresolved-assoc-ty-suggest-trait.lazy.stderr | ||
| unresolved-assoc-ty-suggest-trait.rs | ||