blob: 15985da50b55ee39b363bddf6b6957b5b84ba84b [file] [log] [blame] [edit]
//@ check-pass
#![feature(precise_capturing_in_traits)]
trait Foo {
fn bar<'a>() -> impl Sized + use<Self>;
}
fn main() {}