summaryrefslogtreecommitdiffstats
path: root/tests/ui/suggestions/no-extern-crate-in-type.stderr
blob: 876eef2b6249a271a0e223aef15515a690cbbb6f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
error[E0412]: cannot find type `Foo` in this scope
  --> $DIR/no-extern-crate-in-type.rs:5:22
   |
LL | type Output = Option<Foo>;
   |                      ^^^ not found in this scope
   |
help: consider importing this struct
   |
LL | use foo::Foo;
   |

error: aborting due to previous error

For more information about this error, try `rustc --explain E0412`.