[Given](https://github.com/rust-lang/rust/blob/1f64f60d5cba64beca6e812e16d6d99519d3551b/src/test/ui/parser/trait-object-lifetime-parens.rs): ``` trait Trait {} fn f<'a, T: Trait + ('a)>() {} ``` suggest the correct syntax ``` error: parenthesized lifetime bounds are not supported --> $DIR/trait-object-lifetime-parens.rs:5:24 | LL | fn f<'a, T: Trait + ('a)>() {} | ^ help: remove the braces | LL | fn f<'a, T: Trait + 'a>() {} | ^^ ```