1error[E0119]: conflicting implementations of trait `MyMarker`
2  --> $DIR/feature-gate-overlapping_marker_traits.rs:6:1
3   |
4LL | impl<T: Display> MyMarker for T {}
5   | ------------------------------- first implementation here
6LL | impl<T: Debug> MyMarker for T {}
7   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation
8
9error: aborting due to previous error
10
11For more information about this error, try `rustc --explain E0119`.
12