2018-03-06 10:22:24 +00:00
|
|
|
error: lifetime bounds cannot be used in this context
|
2018-03-10 10:22:55 +00:00
|
|
|
--> $DIR/higher-lifetime-bounds.rs:18:22
|
2018-02-05 20:20:57 +00:00
|
|
|
|
|
2018-03-06 10:22:24 +00:00
|
|
|
LL | f: for<'xa, 'xb: 'xa+'xa> fn(&'xa i32, &'xb i32) -> &'xa i32)
|
|
|
|
| ^^^ ^^^
|
2018-02-18 18:40:35 +00:00
|
|
|
|
2018-03-06 10:22:24 +00:00
|
|
|
error: lifetime bounds cannot be used in this context
|
2018-03-10 10:22:55 +00:00
|
|
|
--> $DIR/higher-lifetime-bounds.rs:26:34
|
2018-02-18 18:40:35 +00:00
|
|
|
|
|
|
|
|
LL | fn bar2<'a, 'b, F: for<'xa, 'xb: 'xa> Fn(&'xa i32, &'xb i32) -> &'xa i32>(
|
|
|
|
| ^^^
|
|
|
|
|
2018-03-06 10:22:24 +00:00
|
|
|
error: lifetime bounds cannot be used in this context
|
2018-03-10 10:22:55 +00:00
|
|
|
--> $DIR/higher-lifetime-bounds.rs:41:28
|
2018-02-18 18:40:35 +00:00
|
|
|
|
|
|
|
|
LL | where F: for<'xa, 'xb: 'xa> Fn(&'xa i32, &'xb i32) -> &'xa i32
|
|
|
|
| ^^^
|
|
|
|
|
2018-03-06 10:22:24 +00:00
|
|
|
error: lifetime bounds cannot be used in this context
|
2018-03-10 10:22:55 +00:00
|
|
|
--> $DIR/higher-lifetime-bounds.rs:53:25
|
2018-02-18 18:40:35 +00:00
|
|
|
|
|
|
|
|
LL | where for<'xa, 'xb: 'xa> F: Fn(&'xa i32, &'xb i32) -> &'xa i32
|
|
|
|
| ^^^
|
|
|
|
|
2018-03-06 10:22:24 +00:00
|
|
|
error: lifetime bounds cannot be used in this context
|
2018-03-10 10:22:55 +00:00
|
|
|
--> $DIR/higher-lifetime-bounds.rs:61:28
|
2018-02-18 18:40:35 +00:00
|
|
|
|
|
|
|
|
LL | struct S1<F: for<'xa, 'xb: 'xa> Fn(&'xa i32, &'xb i32) -> &'xa i32>(F);
|
|
|
|
| ^^^
|
|
|
|
|
2018-03-06 10:22:24 +00:00
|
|
|
error: lifetime bounds cannot be used in this context
|
2018-03-10 10:22:55 +00:00
|
|
|
--> $DIR/higher-lifetime-bounds.rs:63:40
|
2018-02-18 18:40:35 +00:00
|
|
|
|
|
|
|
|
LL | struct S2<F>(F) where F: for<'xa, 'xb: 'xa> Fn(&'xa i32, &'xb i32) -> &'xa i32;
|
|
|
|
| ^^^
|
|
|
|
|
2018-03-06 10:22:24 +00:00
|
|
|
error: lifetime bounds cannot be used in this context
|
2018-03-10 10:22:55 +00:00
|
|
|
--> $DIR/higher-lifetime-bounds.rs:65:37
|
2018-02-18 18:40:35 +00:00
|
|
|
|
|
|
|
|
LL | struct S3<F>(F) where for<'xa, 'xb: 'xa> F: Fn(&'xa i32, &'xb i32) -> &'xa i32;
|
|
|
|
| ^^^
|
|
|
|
|
2018-03-06 10:22:24 +00:00
|
|
|
error: lifetime bounds cannot be used in this context
|
2018-03-10 10:22:55 +00:00
|
|
|
--> $DIR/higher-lifetime-bounds.rs:68:29
|
2018-02-18 18:40:35 +00:00
|
|
|
|
|
|
|
|
LL | struct S_fnty(for<'xa, 'xb: 'xa> fn(&'xa i32, &'xb i32) -> &'xa i32);
|
|
|
|
| ^^^
|
|
|
|
|
2018-03-06 10:22:24 +00:00
|
|
|
error: lifetime bounds cannot be used in this context
|
2018-03-10 10:22:55 +00:00
|
|
|
--> $DIR/higher-lifetime-bounds.rs:71:29
|
2018-02-18 18:40:35 +00:00
|
|
|
|
|
|
|
|
LL | type T1 = Box<for<'xa, 'xb: 'xa> Fn(&'xa i32, &'xb i32) -> &'xa i32>;
|
|
|
|
| ^^^
|
2018-02-05 20:20:57 +00:00
|
|
|
|
2018-03-06 10:22:24 +00:00
|
|
|
error: lifetime bounds cannot be used in this context
|
2018-03-10 10:22:55 +00:00
|
|
|
--> $DIR/higher-lifetime-bounds.rs:75:34
|
2018-02-05 20:20:57 +00:00
|
|
|
|
|
2018-02-18 18:40:35 +00:00
|
|
|
LL | let _ : Option<for<'xa, 'xb: 'xa> fn(&'xa i32, &'xb i32) -> &'xa i32> = None;
|
|
|
|
| ^^^
|
2018-02-05 20:20:57 +00:00
|
|
|
|
2018-03-06 10:22:24 +00:00
|
|
|
error: lifetime bounds cannot be used in this context
|
2018-03-10 10:22:55 +00:00
|
|
|
--> $DIR/higher-lifetime-bounds.rs:77:38
|
2018-02-05 20:20:57 +00:00
|
|
|
|
|
2018-02-18 18:40:35 +00:00
|
|
|
LL | let _ : Option<Box<for<'xa, 'xb: 'xa> Fn(&'xa i32, &'xb i32) -> &'xa i32>> = None;
|
|
|
|
| ^^^
|
2018-02-05 20:20:57 +00:00
|
|
|
|
2018-03-06 10:22:24 +00:00
|
|
|
error: aborting due to 11 previous errors
|
|
|
|
|