rust/tests/ui/issues/issue-52717.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
418 B
Plaintext
Raw Normal View History

error[E0026]: variant `A::A` does not have a field named `fob`
2018-12-25 15:56:47 +00:00
--> $DIR/issue-52717.rs:10:12
|
LL | A::A { fob } => { println!("{}", fob); }
| ^^^
| |
| variant `A::A` does not have this field
| help: a field with a similar name exists: `foo`
error: aborting due to 1 previous error
For more information about this error, try `rustc --explain E0026`.