summaryrefslogtreecommitdiffstats
path: root/src/test/ui/associated-types/bound-lifetime-constrained.func.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/associated-types/bound-lifetime-constrained.func.stderr')
-rw-r--r--src/test/ui/associated-types/bound-lifetime-constrained.func.stderr15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/test/ui/associated-types/bound-lifetime-constrained.func.stderr b/src/test/ui/associated-types/bound-lifetime-constrained.func.stderr
new file mode 100644
index 000000000..88d15a171
--- /dev/null
+++ b/src/test/ui/associated-types/bound-lifetime-constrained.func.stderr
@@ -0,0 +1,15 @@
+error[E0581]: return type references lifetime `'a`, which is not constrained by the fn input types
+ --> $DIR/bound-lifetime-constrained.rs:16:50
+ |
+LL | fn func1(_: for<'a> fn(<() as Foo<'a>>::Item) -> &'a i32) {
+ | ^^^^^^^
+
+error[E0581]: return type references lifetime `'a`, which is not constrained by the fn input types
+ --> $DIR/bound-lifetime-constrained.rs:23:29
+ |
+LL | fn func2(_: for<'a> fn() -> <() as Foo<'a>>::Item) {
+ | ^^^^^^^^^^^^^^^^^^^^^
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0581`.