]> git.lizzy.rs Git - rust.git/blob - src/test/ui/regions/regions-close-param-into-object.nll.stderr
Merge commit '645ef505da378b6f810b1567806d1bcc2856395f' into clippyup
[rust.git] / src / test / ui / regions / regions-close-param-into-object.nll.stderr
1 error[E0310]: the parameter type `T` may not live long enough
2   --> $DIR/regions-close-param-into-object.rs:6:5
3    |
4 LL |     Box::new(v)
5    |     ^^^^^^^^^^^
6    |
7    = help: consider adding an explicit lifetime bound `T: 'static`...
8
9 error[E0310]: the parameter type `T` may not live long enough
10   --> $DIR/regions-close-param-into-object.rs:12:5
11    |
12 LL |     Box::new(v)
13    |     ^^^^^^^^^^^
14    |
15    = help: consider adding an explicit lifetime bound `T: 'static`...
16
17 error[E0309]: the parameter type `T` may not live long enough
18   --> $DIR/regions-close-param-into-object.rs:18:5
19    |
20 LL |     Box::new(v)
21    |     ^^^^^^^^^^^
22    |
23    = help: consider adding an explicit lifetime bound `T: 'a`...
24
25 error[E0309]: the parameter type `T` may not live long enough
26   --> $DIR/regions-close-param-into-object.rs:24:5
27    |
28 LL |     Box::new(v)
29    |     ^^^^^^^^^^^
30    |
31    = help: consider adding an explicit lifetime bound `T: 'a`...
32
33 error: aborting due to 4 previous errors
34
35 Some errors have detailed explanations: E0309, E0310.
36 For more information about an error, try `rustc --explain E0309`.