rust/tests/ui/coherence/coherence-overlap-negate-use-feature-gate.rs
2023-01-11 09:32:08 +00:00

12 lines
158 B
Rust

// check-pass
#![feature(with_negative_coherence)]
use std::ops::DerefMut;
trait Foo {}
impl<T: DerefMut> Foo for T {}
impl<U> Foo for &U {}
fn main() {}