DEBSOURCES
Skip Quicknav
sources / rustc / 1.85.0%2Bdfsg3-1 / tests / ui / impl-header-lifetime-elision / trait-elided.rs
12345678
#![allow(warnings)] trait MyTrait<'a> {} impl MyTrait for u32 {} //~^ ERROR implicit elided lifetime not allowed here fn main() {}