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

#![feature(precise_capturing)]
//~^ WARN the feature `precise_capturing` is incomplete

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

fn main() {}