summaryrefslogtreecommitdiffstats
path: root/tests/ui/error-codes/E0308-2.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/error-codes/E0308-2.stderr')
-rw-r--r--tests/ui/error-codes/E0308-2.stderr18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/ui/error-codes/E0308-2.stderr b/tests/ui/error-codes/E0308-2.stderr
new file mode 100644
index 000000000..3a8a81a73
--- /dev/null
+++ b/tests/ui/error-codes/E0308-2.stderr
@@ -0,0 +1,18 @@
+error[E0308]: mismatched types
+ --> $DIR/E0308-2.rs:9:13
+ |
+LL | impl Eq for &dyn DynEq {}
+ | ^^^^^^^^^^ lifetime mismatch
+ |
+ = note: expected trait `<&dyn DynEq as PartialEq>`
+ found trait `<&(dyn DynEq + 'static) as PartialEq>`
+note: the anonymous lifetime as defined here...
+ --> $DIR/E0308-2.rs:9:13
+ |
+LL | impl Eq for &dyn DynEq {}
+ | ^
+ = note: ...does not necessarily outlive the static lifetime
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0308`.