summaryrefslogtreecommitdiffstats
path: root/tests/ui/nll/ty-outlives/projection-implied-bounds.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/nll/ty-outlives/projection-implied-bounds.stderr')
-rw-r--r--tests/ui/nll/ty-outlives/projection-implied-bounds.stderr14
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/ui/nll/ty-outlives/projection-implied-bounds.stderr b/tests/ui/nll/ty-outlives/projection-implied-bounds.stderr
new file mode 100644
index 000000000..d949e29b2
--- /dev/null
+++ b/tests/ui/nll/ty-outlives/projection-implied-bounds.stderr
@@ -0,0 +1,14 @@
+error[E0310]: the parameter type `T` may not live long enough
+ --> $DIR/projection-implied-bounds.rs:30:36
+ |
+LL | twice(value, |value_ref, item| invoke2(value_ref, item));
+ | ^^^^^^^^^^^^^^^^^^^^^^^^ ...so that the type `T` will meet its required lifetime bounds
+ |
+help: consider adding an explicit lifetime bound...
+ |
+LL | fn generic2<T: Iterator + 'static>(value: T) {
+ | +++++++++
+
+error: aborting due to previous error
+
+For more information about this error, try `rustc --explain E0310`.