rust/tests/ui/parser/trait-object-lifetime-parens.e2015.stderr

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

38 lines
972 B
Plaintext
Raw Permalink Normal View History

2018-10-20 20:36:17 +00:00
error: parenthesized lifetime bounds are not supported
--> $DIR/trait-object-lifetime-parens.rs:9:21
2018-10-20 20:36:17 +00:00
|
2019-03-09 12:03:44 +00:00
LL | fn f<'a, T: Trait + ('a)>() {}
| ^^^^
|
help: remove the parentheses
|
LL - fn f<'a, T: Trait + ('a)>() {}
LL + fn f<'a, T: Trait + 'a>() {}
|
2018-10-20 20:36:17 +00:00
error: parenthesized lifetime bounds are not supported
--> $DIR/trait-object-lifetime-parens.rs:12:24
2018-10-20 20:36:17 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let _: Box<Trait + ('a)>;
| ^^^^
|
help: remove the parentheses
|
LL - let _: Box<Trait + ('a)>;
LL + let _: Box<Trait + 'a>;
|
2018-10-20 20:36:17 +00:00
error: lifetimes must be followed by `+` to form a trait object type
--> $DIR/trait-object-lifetime-parens.rs:16:17
2018-10-20 20:36:17 +00:00
|
2019-03-09 12:03:44 +00:00
LL | let _: Box<('a) + Trait>;
| ^^
|
help: consider adding a trait bound after the potential lifetime bound
|
LL | let _: Box<('a + /* Trait */) + Trait>;
| +++++++++++++
2018-10-20 20:36:17 +00:00
error: aborting due to 3 previous errors
2018-10-20 20:36:17 +00:00