mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
11 lines
375 B
Plaintext
11 lines
375 B
Plaintext
|
error[E0119]: conflicting implementations of trait `MyMarker`:
|
||
|
--> $DIR/feature-gate-overlapping_marker_traits.rs:16:1
|
||
|
|
|
||
|
15 | impl<T: Display> MyMarker for T {}
|
||
|
| ---------------------------------- first implementation here
|
||
|
16 | impl<T: Debug> MyMarker for T {}
|
||
|
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation
|
||
|
|
||
|
error: aborting due to previous error
|
||
|
|