summaryrefslogtreecommitdiffstats
path: root/tests/ui/borrowck/anonymous-region-in-apit.rs
blob: 7799a7cb151de5d629ee74d65aafd3f2ee69119f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#![feature(anonymous_lifetime_in_impl_trait)]

trait Foo<T> {
    fn bar(self, baz: T);
}

fn qux(foo: impl Foo<&str>) {
    |baz: &str| foo.bar(baz);
    //~^ ERROR borrowed data escapes outside of closure
}

fn main() {}