summaryrefslogtreecommitdiffstats
path: root/src/test/ui/regions/regions-normalize-in-where-clause-list.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/regions/regions-normalize-in-where-clause-list.stderr')
-rw-r--r--src/test/ui/regions/regions-normalize-in-where-clause-list.stderr27
1 files changed, 27 insertions, 0 deletions
diff --git a/src/test/ui/regions/regions-normalize-in-where-clause-list.stderr b/src/test/ui/regions/regions-normalize-in-where-clause-list.stderr
new file mode 100644
index 000000000..567283729
--- /dev/null
+++ b/src/test/ui/regions/regions-normalize-in-where-clause-list.stderr
@@ -0,0 +1,27 @@
+error[E0495]: cannot infer an appropriate lifetime for lifetime parameter `'a` due to conflicting requirements
+ --> $DIR/regions-normalize-in-where-clause-list.rs:24:4
+ |
+LL | fn bar<'a, 'b>()
+ | ^^^
+ |
+note: first, the lifetime cannot outlive the lifetime `'a` as defined here...
+ --> $DIR/regions-normalize-in-where-clause-list.rs:24:8
+ |
+LL | fn bar<'a, 'b>()
+ | ^^
+note: ...but the lifetime must also be valid for the lifetime `'b` as defined here...
+ --> $DIR/regions-normalize-in-where-clause-list.rs:24:12
+ |
+LL | fn bar<'a, 'b>()
+ | ^^
+note: ...so that the types are compatible
+ --> $DIR/regions-normalize-in-where-clause-list.rs:24:4
+ |
+LL | fn bar<'a, 'b>()
+ | ^^^
+ = note: expected `Project<'a, 'b>`
+ found `Project<'_, '_>`
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0495`.