blob: 0e54131c24560a6663dd8c7f3c73e27a7c7e818e [file] [log] [blame]
struct Bar<T> {
inner: Foo<T> //~ ERROR cannot find type `Foo` in this scope
}
enum Baz<T> {
Foo(Foo<T>) //~ ERROR cannot find type `Foo` in this scope
}
fn main() {}