coherence-no-direct-lifetime-dispatch.stderr 415 字节
Newer Older
1
error[E0119]: conflicting implementations of trait `MyTrait`
2
  --> $DIR/coherence-no-direct-lifetime-dispatch.rs:6:1
3 4 5
   |
LL | impl<T> MyTrait for T {}
   | --------------------- first implementation here
G
Georg Semmler 已提交
6
LL | impl<T: 'static> MyTrait for T {}
7 8 9 10 11
   | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation

error: aborting due to previous error

For more information about this error, try `rustc --explain E0119`.