]> git.lizzy.rs Git - rust.git/blob - tests/ui/suggestions/no-extern-crate-in-type.rs
Auto merge of #106827 - alexcrichton:update-llvm-to-15.0.7, r=cuviper
[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() {}