]> git.proxmox.com Git - rustc.git/blame - tests/ui/coherence/coherence-negative-outlives-lifetimes.with_negative_coherence.stderr
New upstream version 1.76.0+dfsg1
[rustc.git] / tests / ui / coherence / coherence-negative-outlives-lifetimes.with_negative_coherence.stderr
CommitLineData
ed00b5ec 1error[E0119]: conflicting implementations of trait `MyTrait<'_>` for type `&_`
4b012472 2 --> $DIR/coherence-negative-outlives-lifetimes.rs:18:1
ed00b5ec
FG
3 |
4LL | impl<'a, T: MyPredicate<'a>> MyTrait<'a> for T {}
5 | ---------------------------------------------- first implementation here
6LL | impl<'a, T> MyTrait<'a> for &'a T {}
7 | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `&_`
8
4b012472 9error: aborting due to 1 previous error
ed00b5ec
FG
10
11For more information about this error, try `rustc --explain E0119`.