about summary refs log tree commit diff
path: root/tests/ui/impl-trait/precise-capturing/elided.rs
blob: 472bac9d722ddb39ca3836d37d8bb6ae91fa5f3a (plain)
1
2
3
4
5
//@ check-pass

fn elided(x: &()) -> impl Sized + use<'_> { x }

fn main() {}