```
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;
|
```
22 lines
540 B
Plaintext
22 lines
540 B
Plaintext
error: `mut` must precede `dyn`
|
|
--> $DIR/recover-ref-dyn-mut.rs:5:12
|
|
|
|
|
LL | let r: &dyn mut Trait;
|
|
| ^^^^^^^^
|
|
|
|
|
help: place `mut` before `dyn`
|
|
|
|
|
LL - let r: &dyn mut Trait;
|
|
LL + let r: &mut dyn Trait;
|
|
|
|
|
|
|
error[E0405]: cannot find trait `Trait` in this scope
|
|
--> $DIR/recover-ref-dyn-mut.rs:5:21
|
|
|
|
|
LL | let r: &dyn mut Trait;
|
|
| ^^^^^ not found in this scope
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0405`.
|