]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/no-extern-crate-in-type.stderr
Rollup merge of #106670 - albertlarsan68:check-docs-in-pr-ci, r=Mark-Simulacrum
[rust.git] / tests / 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    |
7 help: consider importing this struct
8    |
9 LL | use foo::Foo;
10    |
11
12 error: aborting due to previous error
13
14 For more information about this error, try `rustc --explain E0412`.