mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
38438c618c
Renames only in this commit, and obviously .stderr file additions.
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
|
|
|