mirror of
https://github.com/rust-lang/rust
synced 2024-11-05 20:45:15 +00:00
8 lines
182 B
Rust
8 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() {}
|