]> git.proxmox.com Git - rustc.git/blob - src/test/ui/wf/wf-outlives-ty-in-fn-or-trait.stderr
New upstream version 1.67.1+dfsg1
[rustc.git] / src / test / ui / wf / wf-outlives-ty-in-fn-or-trait.stderr
1 error[E0309]: the parameter type `T` may not live long enough
2 --> $DIR/wf-outlives-ty-in-fn-or-trait.rs:9:16
3 |
4 LL | type Out = &'a fn(T);
5 | ^^^^^^^^^ ...so that the reference type `&'a fn(T)` does not outlive the data it points at
6 |
7 help: consider adding an explicit lifetime bound...
8 |
9 LL | impl<'a, T: 'a> Trait<'a, T> for usize {
10 | ++++
11
12 error[E0309]: the parameter type `T` may not live long enough
13 --> $DIR/wf-outlives-ty-in-fn-or-trait.rs:19:16
14 |
15 LL | type Out = &'a dyn Baz<T>;
16 | ^^^^^^^^^^^^^^ ...so that the reference type `&'a (dyn Baz<T> + 'a)` does not outlive the data it points at
17 |
18 help: consider adding an explicit lifetime bound...
19 |
20 LL | impl<'a, T: 'a> Trait<'a, T> for u32 {
21 | ++++
22
23 error: aborting due to 2 previous errors
24
25 For more information about this error, try `rustc --explain E0309`.