2018-03-06 04:22:24 -06:00
|
|
|
error: lifetime bounds cannot be used in this context
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/higher-lifetime-bounds.rs:8:22
|
2018-02-05 14:20:57 -06:00
|
|
|
|
|
2018-03-06 04:22:24 -06:00
|
|
|
LL | f: for<'xa, 'xb: 'xa+'xa> fn(&'xa i32, &'xb i32) -> &'xa i32)
|
|
|
|
| ^^^ ^^^
|
2018-02-18 12:40:35 -06:00
|
|
|
|
2018-03-06 04:22:24 -06:00
|
|
|
error: lifetime bounds cannot be used in this context
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/higher-lifetime-bounds.rs:16:34
|
2018-02-18 12:40:35 -06:00
|
|
|
|
|
|
|
|
LL | fn bar2<'a, 'b, F: for<'xa, 'xb: 'xa> Fn(&'xa i32, &'xb i32) -> &'xa i32>(
|
|
|
|
| ^^^
|
|
|
|
|
2018-03-06 04:22:24 -06:00
|
|
|
error: lifetime bounds cannot be used in this context
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/higher-lifetime-bounds.rs:31:28
|
2018-02-18 12:40:35 -06:00
|
|
|
|
|
|
|
|
LL | where F: for<'xa, 'xb: 'xa> Fn(&'xa i32, &'xb i32) -> &'xa i32
|
|
|
|
| ^^^
|
|
|
|
|
2018-03-06 04:22:24 -06:00
|
|
|
error: lifetime bounds cannot be used in this context
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/higher-lifetime-bounds.rs:43:25
|
2018-02-18 12:40:35 -06:00
|
|
|
|
|
|
|
|
LL | where for<'xa, 'xb: 'xa> F: Fn(&'xa i32, &'xb i32) -> &'xa i32
|
|
|
|
| ^^^
|
|
|
|
|
2018-03-06 04:22:24 -06:00
|
|
|
error: lifetime bounds cannot be used in this context
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/higher-lifetime-bounds.rs:51:28
|
2018-02-18 12:40:35 -06:00
|
|
|
|
|
|
|
|
LL | struct S1<F: for<'xa, 'xb: 'xa> Fn(&'xa i32, &'xb i32) -> &'xa i32>(F);
|
|
|
|
| ^^^
|
|
|
|
|
2018-03-06 04:22:24 -06:00
|
|
|
error: lifetime bounds cannot be used in this context
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/higher-lifetime-bounds.rs:53:40
|
2018-02-18 12:40:35 -06:00
|
|
|
|
|
|
|
|
LL | struct S2<F>(F) where F: for<'xa, 'xb: 'xa> Fn(&'xa i32, &'xb i32) -> &'xa i32;
|
|
|
|
| ^^^
|
|
|
|
|
2018-03-06 04:22:24 -06:00
|
|
|
error: lifetime bounds cannot be used in this context
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/higher-lifetime-bounds.rs:55:37
|
2018-02-18 12:40:35 -06:00
|
|
|
|
|
|
|
|
LL | struct S3<F>(F) where for<'xa, 'xb: 'xa> F: Fn(&'xa i32, &'xb i32) -> &'xa i32;
|
|
|
|
| ^^^
|
|
|
|
|
2018-03-06 04:22:24 -06:00
|
|
|
error: lifetime bounds cannot be used in this context
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/higher-lifetime-bounds.rs:58:29
|
2018-02-18 12:40:35 -06:00
|
|
|
|
|
|
|
|
LL | struct S_fnty(for<'xa, 'xb: 'xa> fn(&'xa i32, &'xb i32) -> &'xa i32);
|
|
|
|
| ^^^
|
|
|
|
|
2018-03-06 04:22:24 -06:00
|
|
|
error: lifetime bounds cannot be used in this context
|
2019-05-28 13:46:13 -05:00
|
|
|
--> $DIR/higher-lifetime-bounds.rs:61:33
|
2018-02-18 12:40:35 -06:00
|
|
|
|
|
2019-05-28 13:46:13 -05:00
|
|
|
LL | type T1 = Box<dyn for<'xa, 'xb: 'xa> Fn(&'xa i32, &'xb i32) -> &'xa i32>;
|
|
|
|
| ^^^
|
2018-02-05 14:20:57 -06:00
|
|
|
|
2018-03-06 04:22:24 -06:00
|
|
|
error: lifetime bounds cannot be used in this context
|
2018-12-25 09:56:47 -06:00
|
|
|
--> $DIR/higher-lifetime-bounds.rs:65:34
|
2018-02-05 14:20:57 -06:00
|
|
|
|
|
2018-02-18 12:40:35 -06:00
|
|
|
LL | let _ : Option<for<'xa, 'xb: 'xa> fn(&'xa i32, &'xb i32) -> &'xa i32> = None;
|
|
|
|
| ^^^
|
2018-02-05 14:20:57 -06:00
|
|
|
|
2018-03-06 04:22:24 -06:00
|
|
|
error: lifetime bounds cannot be used in this context
|
2019-05-28 13:46:13 -05:00
|
|
|
--> $DIR/higher-lifetime-bounds.rs:67:42
|
2018-02-05 14:20:57 -06:00
|
|
|
|
|
2019-05-28 13:46:13 -05:00
|
|
|
LL | let _ : Option<Box<dyn for<'xa, 'xb: 'xa> Fn(&'xa i32, &'xb i32) -> &'xa i32>> = None;
|
|
|
|
| ^^^
|
2018-02-05 14:20:57 -06:00
|
|
|
|
2018-03-06 04:22:24 -06:00
|
|
|
error: aborting due to 11 previous errors
|
|
|
|
|