summaryrefslogtreecommitdiffstats
path: root/tests/ui/nll/user-annotations/region-error-ice-109072.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/nll/user-annotations/region-error-ice-109072.stderr')
-rw-r--r--tests/ui/nll/user-annotations/region-error-ice-109072.stderr26
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/ui/nll/user-annotations/region-error-ice-109072.stderr b/tests/ui/nll/user-annotations/region-error-ice-109072.stderr
new file mode 100644
index 000000000..d90971bed
--- /dev/null
+++ b/tests/ui/nll/user-annotations/region-error-ice-109072.stderr
@@ -0,0 +1,26 @@
+error[E0261]: use of undeclared lifetime name `'missing`
+ --> $DIR/region-error-ice-109072.rs:8:9
+ |
+LL | impl Lt<'missing> for () {
+ | - ^^^^^^^^ undeclared lifetime
+ | |
+ | help: consider introducing lifetime `'missing` here: `<'missing>`
+
+error[E0261]: use of undeclared lifetime name `'missing`
+ --> $DIR/region-error-ice-109072.rs:9:15
+ |
+LL | type T = &'missing ();
+ | ^^^^^^^^ undeclared lifetime
+ |
+help: consider introducing lifetime `'missing` here
+ |
+LL | type T<'missing> = &'missing ();
+ | ++++++++++
+help: consider introducing lifetime `'missing` here
+ |
+LL | impl<'missing> Lt<'missing> for () {
+ | ++++++++++
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0261`.