summaryrefslogtreecommitdiffstats
path: root/tests/ui/error-codes/E0119.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/error-codes/E0119.stderr')
-rw-r--r--tests/ui/error-codes/E0119.stderr12
1 files changed, 12 insertions, 0 deletions
diff --git a/tests/ui/error-codes/E0119.stderr b/tests/ui/error-codes/E0119.stderr
new file mode 100644
index 000000000..e08a2c7fc
--- /dev/null
+++ b/tests/ui/error-codes/E0119.stderr
@@ -0,0 +1,12 @@
+error[E0119]: conflicting implementations of trait `MyTrait` for type `Foo`
+ --> $DIR/E0119.rs:13:1
+ |
+LL | impl<T> MyTrait for T {
+ | --------------------- first implementation here
+...
+LL | impl MyTrait for Foo {
+ | ^^^^^^^^^^^^^^^^^^^^ conflicting implementation for `Foo`
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0119`.