rust/tests/ui/suggestions/no-extern-crate-in-type.rs

8 lines
115 B
Rust

//@ aux-build:foo.rs
extern crate foo;
type Output = Option<Foo>; //~ ERROR cannot find type `Foo`
fn main() {}