diff options
Diffstat (limited to 'tests/ui/coherence/negative-coherence-check-placeholder-outlives.stderr')
-rw-r--r-- | tests/ui/coherence/negative-coherence-check-placeholder-outlives.stderr | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/ui/coherence/negative-coherence-check-placeholder-outlives.stderr b/tests/ui/coherence/negative-coherence-check-placeholder-outlives.stderr new file mode 100644 index 000000000..f515c39ea --- /dev/null +++ b/tests/ui/coherence/negative-coherence-check-placeholder-outlives.stderr @@ -0,0 +1,11 @@ +error[E0119]: conflicting implementations of trait `Bar` for type `Box<_>` + --> $DIR/negative-coherence-check-placeholder-outlives.rs:11:1 + | +LL | impl<T> Bar for T where T: Foo {} + | ------------------------------ first implementation here +LL | impl<T> Bar for Box<T> {} + | ^^^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `Box<_>` + +error: aborting due to 1 previous error + +For more information about this error, try `rustc --explain E0119`. |