blob: 63f796771db08f3cf5b8a71f11b056e4164e692a [file] [log] [blame] [edit]
auto trait Trait<P> {} //~ ERROR auto traits cannot have generic parameters
//~^ ERROR auto traits are experimental and possibly buggy
impl<P> Trait<P> for () {}
fn main() {}