2018-10-20 23:36:17 +03:00
|
|
|
error: parenthesized lifetime bounds are not supported
|
2019-01-06 18:33:05 +03:00
|
|
|
--> $DIR/trait-object-lifetime-parens.rs:5:24
|
2018-10-20 23:36:17 +03:00
|
|
|
|
|
2019-01-06 18:33:05 +03:00
|
|
|
LL | fn f<'a, T: Trait + ('a)>() {} //~ ERROR parenthesized lifetime bounds are not supported
|
|
|
|
| ^
|
2018-10-20 23:36:17 +03:00
|
|
|
|
|
|
|
error: parenthesized lifetime bounds are not supported
|
2019-01-06 18:33:05 +03:00
|
|
|
--> $DIR/trait-object-lifetime-parens.rs:8:27
|
2018-10-20 23:36:17 +03:00
|
|
|
|
|
2019-01-06 18:33:05 +03:00
|
|
|
LL | let _: Box<Trait + ('a)>; //~ ERROR parenthesized lifetime bounds are not supported
|
|
|
|
| ^
|
2018-10-20 23:36:17 +03:00
|
|
|
|
|
|
|
error: expected type, found `'a`
|
2019-01-06 18:33:05 +03:00
|
|
|
--> $DIR/trait-object-lifetime-parens.rs:9:17
|
2018-10-20 23:36:17 +03:00
|
|
|
|
|
2019-01-06 18:33:05 +03:00
|
|
|
LL | let _: Box<('a) + Trait>; //~ ERROR expected type, found `'a`
|
2018-10-20 23:36:17 +03:00
|
|
|
| - ^^
|
|
|
|
| |
|
|
|
|
| while parsing the type for `_`
|
|
|
|
|
|
|
|
error: aborting due to 3 previous errors
|
|
|
|
|