summaryrefslogtreecommitdiffstats
path: root/src/test/ui/nll/user-annotations/wf-self-type.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/nll/user-annotations/wf-self-type.stderr')
-rw-r--r--src/test/ui/nll/user-annotations/wf-self-type.stderr14
1 files changed, 0 insertions, 14 deletions
diff --git a/src/test/ui/nll/user-annotations/wf-self-type.stderr b/src/test/ui/nll/user-annotations/wf-self-type.stderr
deleted file mode 100644
index 1d3ae7cfb..000000000
--- a/src/test/ui/nll/user-annotations/wf-self-type.stderr
+++ /dev/null
@@ -1,14 +0,0 @@
-error: lifetime may not live long enough
- --> $DIR/wf-self-type.rs:10:5
- |
-LL | pub fn foo<'a, 'b>(u: &'b ()) -> &'a () {
- | -- -- lifetime `'b` defined here
- | |
- | lifetime `'a` defined here
-LL | Foo::xmute(u)
- | ^^^^^^^^^^^^^ function was supposed to return data with lifetime `'a` but it is returning data with lifetime `'b`
- |
- = help: consider adding the following bound: `'b: 'a`
-
-error: aborting due to previous error
-