rust/tests/ui/nll/ty-outlives/ty-param-closure-approximate-lower-bound.stderr

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

60 lines
2.3 KiB
Plaintext
Raw Normal View History

2020-01-10 08:13:05 -06:00
note: external requirements
2018-12-25 09:56:47 -06:00
--> $DIR/ty-param-closure-approximate-lower-bound.rs:24:24
|
2018-02-22 18:42:32 -06:00
LL | twice(cell, value, |a, b| invoke(a, b));
| ^^^^^^
|
= note: defining type: generic::<T>::{closure#0} with closure substs [
i16,
2023-04-21 19:08:38 -05:00
for<Region(BrAnon(None)), Region(BrAnon(None))> extern "rust-call" fn((std::option::Option<std::cell::Cell<&'?1 &ReLateBound(DebruijnIndex(0), BoundRegion { var: 0, kind: BrAnon(None) }) ()>>, &ReLateBound(DebruijnIndex(0), BoundRegion { var: 1, kind: BrAnon(None) }) T)),
(),
]
2018-09-06 21:57:05 -05:00
= note: number of external vids: 2
2023-04-21 19:08:38 -05:00
= note: where T: '?1
2020-01-10 08:13:05 -06:00
note: no external requirements
2018-12-25 09:56:47 -06:00
--> $DIR/ty-param-closure-approximate-lower-bound.rs:22:1
|
LL | fn generic<T>(value: T) {
| ^^^^^^^^^^^^^^^^^^^^^^^
|
= note: defining type: generic::<T>
2020-01-10 08:13:05 -06:00
note: external requirements
2018-12-25 09:56:47 -06:00
--> $DIR/ty-param-closure-approximate-lower-bound.rs:29:24
|
2018-02-24 17:59:34 -06:00
LL | twice(cell, value, |a, b| invoke(a, b));
| ^^^^^^
|
= note: defining type: generic_fail::<T>::{closure#0} with closure substs [
i16,
2023-04-21 19:08:38 -05:00
for<Region(BrAnon(None)), Region(BrAnon(None))> extern "rust-call" fn((std::option::Option<std::cell::Cell<&'?1 &ReLateBound(DebruijnIndex(0), BoundRegion { var: 0, kind: BrAnon(None) }) ()>>, &ReLateBound(DebruijnIndex(0), BoundRegion { var: 1, kind: BrAnon(None) }) T)),
(),
]
2023-04-21 19:08:38 -05:00
= note: late-bound region is '?2
2018-09-06 21:57:05 -05:00
= note: number of external vids: 3
2023-04-21 19:08:38 -05:00
= note: where T: '?1
2020-01-10 08:13:05 -06:00
note: no external requirements
2018-12-25 09:56:47 -06:00
--> $DIR/ty-param-closure-approximate-lower-bound.rs:28:1
|
LL | fn generic_fail<'a, T>(cell: Cell<&'a ()>, value: T) {
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
= note: defining type: generic_fail::<T>
error[E0309]: the parameter type `T` may not live long enough
--> $DIR/ty-param-closure-approximate-lower-bound.rs:29:31
|
LL | twice(cell, value, |a, b| invoke(a, b));
| ^^^^^^^^^^^^ ...so that the type `T` will meet its required lifetime bounds
2022-03-14 09:56:37 -05:00
|
help: consider adding an explicit lifetime bound...
|
LL | fn generic_fail<'a, T: 'a>(cell: Cell<&'a ()>, value: T) {
| ++++
error: aborting due to previous error
2018-03-03 08:59:40 -06:00
For more information about this error, try `rustc --explain E0309`.