]> git.lizzy.rs Git - rust.git/blob - src/test/ui/issues/issue-5439.stderr
Rollup merge of #100168 - WaffleLapkin:improve_diagnostics_for_missing_type_in_a_cons...
[rust.git] / src / test / ui / issues / issue-5439.stderr
1 error[E0560]: struct `Foo` has no field named `nonexistent`
2   --> $DIR/issue-5439.rs:13:26
3    |
4 LL |         return box Foo { nonexistent: self, foo: i };
5    |                          ^^^^^^^^^^^ `Foo` does not have this field
6    |
7    = note: available fields are: `foo`
8
9 error: aborting due to previous error
10
11 For more information about this error, try `rustc --explain E0560`.