summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/const-eval/generic-slice.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/consts/const-eval/generic-slice.stderr')
-rw-r--r--src/test/ui/consts/const-eval/generic-slice.stderr30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/test/ui/consts/const-eval/generic-slice.stderr b/src/test/ui/consts/const-eval/generic-slice.stderr
deleted file mode 100644
index c38088df4..000000000
--- a/src/test/ui/consts/const-eval/generic-slice.stderr
+++ /dev/null
@@ -1,30 +0,0 @@
-error[E0597]: `x` does not live long enough
- --> $DIR/generic-slice.rs:15:9
- |
-LL | impl<'a, T: 'static> Generic<'a, T> {
- | -- lifetime `'a` defined here
-...
-LL | &x
- | ^^
- | |
- | borrowed value does not live long enough
- | using this value as a constant requires that `x` is borrowed for `'a`
-LL |
-LL | };
- | - `x` dropped here while still borrowed
-
-error[E0597]: `x` does not live long enough
- --> $DIR/generic-slice.rs:27:5
- |
-LL | &x
- | ^^
- | |
- | borrowed value does not live long enough
- | using this value as a static requires that `x` is borrowed for `'static`
-LL |
-LL | };
- | - `x` dropped here while still borrowed
-
-error: aborting due to 2 previous errors
-
-For more information about this error, try `rustc --explain E0597`.