]> git.lizzy.rs Git - rust.git/blob - src/test/ui/resolve/issue-17518.stderr
Rollup merge of #48558 - Mark-Simulacrum:error-format, r=Manishearth
[rust.git] / src / test / ui / resolve / issue-17518.stderr
1 error[E0422]: cannot find struct, variant or union type `E` in this scope
2   --> $DIR/issue-17518.rs:16:5
3    |
4 LL |     E { name: "foobar" }; //~ ERROR cannot find struct, variant or union type `E`
5    |     ^ not found in this scope
6 help: possible candidate is found in another module, you can import it into scope
7    |
8 LL | use SomeEnum::E;
9    |
10
11 error: aborting due to previous error
12
13 If you want more information on this error, try using "rustc --explain E0422"