DEBSOURCES
Skip Quicknav
sources / rustc / 1.85.0%2Bdfsg3-1 / tests / ui / impl-trait / precise-capturing / self-capture.rs
123456789
//@ check-pass #![feature(precise_capturing_in_traits)] trait Foo { fn bar<'a>() -> impl Sized + use<Self>; } fn main() {}