mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
62ba3e70a1
The previous output was unintuitive to users.
10 lines
283 B
Plaintext
10 lines
283 B
Plaintext
error[E0071]: expected struct, variant or union type, found `Foo`
|
|
--> $DIR/E0071.rs:5:13
|
|
|
|
|
LL | let u = FooAlias { value: 0 };
|
|
| ^^^^^^^^ not a struct
|
|
|
|
error: aborting due to previous error
|
|
|
|
For more information about this error, try `rustc --explain E0071`.
|