```
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;
|
```
|
||
|---|---|---|
| .. | ||
| tuple-struct-fields | ||
| add-tuple-within-arguments.rs | ||
| add-tuple-within-arguments.stderr | ||
| array-diagnostics.rs | ||
| array-diagnostics.stderr | ||
| builtin-fail.rs | ||
| builtin-fail.stderr | ||
| builtin.rs | ||
| index-float.rs | ||
| index-invalid.rs | ||
| index-invalid.stderr | ||
| indexing-in-macro.rs | ||
| nested-index.rs | ||
| one-tuple.rs | ||
| tup.rs | ||
| tuple-arity-mismatch.rs | ||
| tuple-arity-mismatch.stderr | ||
| tuple-index-fat-types.rs | ||
| tuple-index-not-tuple.rs | ||
| tuple-index-not-tuple.stderr | ||
| tuple-index-out-of-bounds.rs | ||
| tuple-index-out-of-bounds.stderr | ||
| tuple-index.rs | ||
| wrong_argument_ice-2.rs | ||
| wrong_argument_ice-2.stderr | ||
| wrong_argument_ice-3.rs | ||
| wrong_argument_ice-3.stderr | ||
| wrong_argument_ice-4.rs | ||
| wrong_argument_ice-4.stderr | ||
| wrong_argument_ice.rs | ||
| wrong_argument_ice.stderr | ||