rust/tests/ui/traits/negative-impls/no-items.rs
2023-01-11 09:32:08 +00:00

12 lines
169 B
Rust

#![feature(negative_impls)]
trait MyTrait {
type Foo;
}
impl !MyTrait for u32 {
type Foo = i32; //~ ERROR negative impls cannot have any items
}
fn main() {}