1 2 3 4 5 6 7 8
#![allow(warnings)] trait MyTrait<'a> {} impl MyTrait for u32 {} //~^ ERROR implicit elided lifetime not allowed here fn main() {}