DEBSOURCES
Skip Quicknav
sources / rustc / 1.85.0%2Bdfsg3-1 / tests / ui / issues / issue-16683.rs
123456789
trait T<'a> { fn a(&'a self) -> &'a bool; fn b(&self) { self.a(); //~^ ERROR lifetime may not live long enough } } fn main() {}