blob: 3166887fa8c3961086b267d4dcc7f6b889bae840 [file] [log] [blame] [edit]
// Issue #141436
//@ run-rustfix
#![allow(dead_code)]
trait Trait<'a> {}
fn foo<T: Trait<'static>>() {}
//~^ ERROR expected one of
fn main() {}