summary refs log tree commit diff
path: root/tests/ui/impl-trait/precise-capturing/self-capture.rs
blob: 15985da50b55ee39b363bddf6b6957b5b84ba84b (plain)
1
2
3
4
5
6
7
8
9
//@ check-pass

#![feature(precise_capturing_in_traits)]

trait Foo {
    fn bar<'a>() -> impl Sized + use<Self>;
}

fn main() {}