]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/no-extern-crate-in-type.rs
Rollup merge of #105795 - nicholasbishop:bishop-stabilize-efiapi, r=joshtriplett
[rust.git] / tests / ui / suggestions / no-extern-crate-in-type.rs
1 // aux-build:foo.rs
2
3 extern crate foo;
4
5 type Output = Option<Foo>; //~ ERROR cannot find type `Foo`
6
7 fn main() {}