mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-28 01:34:21 +00:00
10 lines
368 B
Plaintext
10 lines
368 B
Plaintext
|
error[E0560]: struct `NonCopyable` has no field named `p`
|
||
|
--> $DIR/issue-4736.rs:14:26
|
||
|
|
|
||
|
LL | let z = NonCopyable{ p: () }; //~ ERROR struct `NonCopyable` has no field named `p`
|
||
|
| ^ field does not exist - did you mean `0`?
|
||
|
|
||
|
error: aborting due to previous error
|
||
|
|
||
|
For more information about this error, try `rustc --explain E0560`.
|