blob: c52977e49b457f36370c64cc67cbf108c84d1618 [file] [log] [blame]
#![feature(optin_builtin_traits)]
trait Trait {
type Bar;
}
struct Foo;
impl !Trait for Foo { } //~ ERROR E0192
fn main() {
}