blob: 9424e3467246d70c24bdd9a4324dda7b49ad8da8 [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() {}