rust/tests/ui/coherence/coherence-overlap-negate-no...

9 lines
182 B
Rust

use std::ops::DerefMut;
trait Foo {}
impl<T: DerefMut> Foo for T {}
impl<U> Foo for &U {}
//~^ ERROR: conflicting implementations of trait `Foo` for type `&_` [E0119]
fn main() {}