]> git.lizzy.rs Git - rust.git/blob - src/test/ui/suggestions/no-extern-crate-in-type.rs
Rollup merge of #104952 - jyn514:setup, r=Mark-Simulacrum
[rust.git] / src / test / 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() {}