summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/relate_tys/var-appears-twice.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/nll/relate_tys/var-appears-twice.stderr')
-rw-r--r--src/test/ui/nll/relate_tys/var-appears-twice.stderr14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/test/ui/nll/relate_tys/var-appears-twice.stderr b/src/test/ui/nll/relate_tys/var-appears-twice.stderr
new file mode 100644
index 000000000..d032ce6f2
--- /dev/null
+++ b/src/test/ui/nll/relate_tys/var-appears-twice.stderr
@@ -0,0 +1,14 @@
+error[E0597]: `b` does not live long enough
+ --> $DIR/var-appears-twice.rs:20:38
+ |
+LL | let x: DoubleCell<_> = make_cell(&b);
+ | ------------- ^^ borrowed value does not live long enough
+ | |
+ | type annotation requires that `b` is borrowed for `'static`
+...
+LL | }
+ | - `b` dropped here while still borrowed
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0597`.