struct S; pub fn foo() {} // { dg-error "could not resolve" } type Foo = S; // { dg-error "could not resolve" } struct Foo2; // { dg-error "could not resolve" } enum Foo3 { // { dg-error "could not resolve" } Foo, Bar, } union Foo4 { // { dg-error "could not resolve" } a: usize, b: i32, } trait Fooable {} // { dg-error "could not resolve" } trait Traitable {} impl Traitable for Foo2 {} // { dg-error "could not resolve" }