]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/no-extern-crate-in-type.rs
Rollup merge of #107559 - WaffleLapkin:is_it_2015¿, r=davidtwco
[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() {}