rust/tests/ui/impl-trait/precise-capturing/elided.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

6 lines
78 B
Rust
Raw Normal View History

2024-04-04 19:36:18 -05:00
//@ check-pass
2024-06-05 15:18:52 -05:00
fn elided(x: &()) -> impl Sized + use<'_> { x }
2024-04-04 19:36:18 -05:00
fn main() {}