summaryrefslogtreecommitdiffstats
path: root/src/test/ui/suggestions/no-extern-crate-in-type.rs
blob: bb93ef4549dc2c82f32ba623468a96c8a323076f (plain)
1
2
3
4
5
6
7
// aux-build:foo.rs

extern crate foo;

type Output = Option<Foo>; //~ ERROR cannot find type `Foo`

fn main() {}