summaryrefslogtreecommitdiff
path: root/tests/ui/associated-inherent-types/regionck-2.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/associated-inherent-types/regionck-2.stderr')
-rw-r--r--tests/ui/associated-inherent-types/regionck-2.stderr18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/ui/associated-inherent-types/regionck-2.stderr b/tests/ui/associated-inherent-types/regionck-2.stderr
new file mode 100644
index 00000000000..b0a4ed35d56
--- /dev/null
+++ b/tests/ui/associated-inherent-types/regionck-2.stderr
@@ -0,0 +1,18 @@
+error[E0308]: mismatched types
+ --> $DIR/regionck-2.rs:12:12
+ |
+LL | fn test(_: Lexer::Cursor) {}
+ | ^^^^^^^^^^^^^ lifetime mismatch
+ |
+ = note: expected struct `Lexer<'static>`
+ found struct `Lexer<'_>`
+note: the anonymous lifetime defined here...
+ --> $DIR/regionck-2.rs:12:12
+ |
+LL | fn test(_: Lexer::Cursor) {}
+ | ^^^^^
+ = note: ...does not necessarily outlive the static lifetime
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0308`.