diff options
Diffstat (limited to 'tests/ui/regions/regions-outlives-projection-container-wc.stderr')
-rw-r--r-- | tests/ui/regions/regions-outlives-projection-container-wc.stderr | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/ui/regions/regions-outlives-projection-container-wc.stderr b/tests/ui/regions/regions-outlives-projection-container-wc.stderr new file mode 100644 index 000000000..eba2a0d58 --- /dev/null +++ b/tests/ui/regions/regions-outlives-projection-container-wc.stderr @@ -0,0 +1,15 @@ +error: lifetime may not live long enough + --> $DIR/regions-outlives-projection-container-wc.rs:30:12 + | +LL | fn with_assoc<'a,'b>() { + | -- -- lifetime `'b` defined here + | | + | lifetime `'a` defined here +... +LL | let _: &'a WithAssoc<TheType<'b>> = loop { }; + | ^^^^^^^^^^^^^^^^^^^^^^^^^^ requires that `'b` must outlive `'a` + | + = help: consider adding the following bound: `'b: 'a` + +error: aborting due to previous error + |