mirror of
https://github.com/rust-lang/rust.git
synced 2025-05-14 02:49:40 +00:00

``` 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; | ```
27 lines
891 B
Plaintext
27 lines
891 B
Plaintext
error: invalid `?` in type
|
|
--> $DIR/infinite-assoc.rs:12:39
|
|
|
|
|
LL | struct A((A, <S as Trait>::T<NOT_EXIST?>));
|
|
| ^ `?` is only allowed on expressions, not types
|
|
|
|
|
help: if you meant to express that the type might not contain a value, use the `Option` wrapper type
|
|
|
|
|
LL - struct A((A, <S as Trait>::T<NOT_EXIST?>));
|
|
LL + struct A((A, <S as Trait>::T<Option<NOT_EXIST>>));
|
|
|
|
|
|
|
error[E0072]: recursive type `A` has infinite size
|
|
--> $DIR/infinite-assoc.rs:12:1
|
|
|
|
|
LL | struct A((A, <S as Trait>::T<NOT_EXIST?>));
|
|
| ^^^^^^^^ - recursive without indirection
|
|
|
|
|
help: insert some indirection (e.g., a `Box`, `Rc`, or `&`) to break the cycle
|
|
|
|
|
LL | struct A((Box<A>, <S as Trait>::T<NOT_EXIST?>));
|
|
| ++++ +
|
|
|
|
error: aborting due to 2 previous errors
|
|
|
|
For more information about this error, try `rustc --explain E0072`.
|