blob: 400f4f7de66f5b855cfd5e58e31bc9c8eb460afa [file] [log] [blame]
// incremental
struct Wrapper<T>(T);
struct Local<T, U>(T, U);
impl<T> Local { //~ ERROR missing generics for struct `Local`
type AssocType3 = T; //~ ERROR inherent associated types are unstable
const WRAPPED_ASSOC_3: Wrapper<Self::AssocType3> = Wrapper();
//~^ ERROR: this struct takes 1 argument but 0 arguments were supplied
}
//~^ ERROR `main` function not found