mirror of
https://github.com/rust-lang/rust.git
synced 2025-10-29 12:04:20 +00:00
8 lines
110 B
Rust
8 lines
110 B
Rust
//@ check-pass
|
|
|
|
#![feature(precise_capturing)]
|
|
|
|
fn elided(x: &()) -> impl Sized + use<'_> { x }
|
|
|
|
fn main() {}
|