]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/no-extern-crate-in-type.stderr
Rollup merge of #59432 - phansch:compiletest_docs, r=alexcrichton
[rust.git] / src / test / ui / suggestions / no-extern-crate-in-type.stderr
1 error[E0412]: cannot find type `Foo` in this scope
2   --> $DIR/no-extern-crate-in-type.rs:5:22
3    |
4 LL | type Output = Option<Foo>;
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 foo::Foo;
9    |
10
11 error: aborting due to previous error
12
13 For more information about this error, try `rustc --explain E0412`.