]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-4736.stderr
Enable full revision in const generics ui tests
[rust.git] / src / test / ui / issues / issue-4736.stderr
1 error[E0560]: struct `NonCopyable` has no field named `p`
2   --> $DIR/issue-4736.rs:4:26
3    |
4 LL | struct NonCopyable(());
5    |        ----------- `NonCopyable` defined here
6 ...
7 LL |     let z = NonCopyable{ p: () };
8    |                          ^ field does not exist
9    |
10 help: `NonCopyable` is a tuple struct, use the appropriate syntax
11    |
12 LL |     let z = NonCopyable(/* fields */);
13    |             ~~~~~~~~~~~~~~~~~~~~~~~~~
14
15 error: aborting due to previous error
16
17 For more information about this error, try `rustc --explain E0560`.