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

#![feature(precise_capturing)]

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

fn main() {}