rust/tests/ui/coherence/coherence-overlap-double-negative.rs

13 lines
160 B
Rust
Raw Normal View History

//@ check-pass
2022-03-16 17:59:03 +00:00
#![feature(negative_impls)]
#![feature(with_negative_coherence)]
trait A {}
trait B: A {}
impl !A for u32 {}
impl !B for u32 {}
fn main() {}