summaryrefslogtreecommitdiffstats
path: root/tests/ui/error-codes/E0311.stderr
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--tests/ui/error-codes/E0311.stderr (renamed from src/test/ui/error-codes/E0311.stderr)10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/test/ui/error-codes/E0311.stderr b/tests/ui/error-codes/E0311.stderr
index 9873b5ae6..b0e6dd1e2 100644
--- a/src/test/ui/error-codes/E0311.stderr
+++ b/tests/ui/error-codes/E0311.stderr
@@ -1,23 +1,23 @@
error[E0311]: the parameter type `T` may not live long enough
- --> $DIR/E0311.rs:2:5
+ --> $DIR/E0311.rs:6:5
|
LL | with_restriction::<T>(x)
| ^^^^^^^^^^^^^^^^^^^^^
|
note: the parameter type `T` must be valid for the anonymous lifetime defined here...
- --> $DIR/E0311.rs:1:25
+ --> $DIR/E0311.rs:5:25
|
LL | fn no_restriction<T>(x: &()) -> &() {
| ^^^
note: ...so that the type `T` will meet its required lifetime bounds
- --> $DIR/E0311.rs:2:5
+ --> $DIR/E0311.rs:6:5
|
LL | with_restriction::<T>(x)
| ^^^^^^^^^^^^^^^^^^^^^
help: consider adding an explicit lifetime bound...
|
-LL | fn no_restriction<'a, T: 'a>(x: &()) -> &() {
- | +++ ++++
+LL | fn no_restriction<'a, T: 'a>(x: &'a ()) -> &() {
+ | +++ ++++ ++
error: aborting due to previous error