blob: 00873ccc8cf4804f0763e12f660cb718f9935a7c [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