```
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;
|
```
23 lines
667 B
Text
23 lines
667 B
Text
error: the feature `foo` has been partially stabilized since 1.62.0 and is succeeded by the feature `foobar`
|
|
--> $DIR/stability-attribute-implies-using-stable.rs:3:12
|
|
|
|
|
LL | #![feature(foo)]
|
|
| ^^^
|
|
|
|
|
note: the lint level is defined here
|
|
--> $DIR/stability-attribute-implies-using-stable.rs:2:9
|
|
|
|
|
LL | #![deny(stable_features)]
|
|
| ^^^^^^^^^^^^^^^
|
|
help: if you are using features which are still unstable, change to using `foobar`
|
|
|
|
|
LL - #![feature(foo)]
|
|
LL + #![feature(foobar)]
|
|
|
|
|
help: if you are using features which are now stable, remove this line
|
|
|
|
|
LL - #![feature(foo)]
|
|
|
|
|
|
|
error: aborting due to 1 previous error
|
|
|