7 lines
110 B
Rust
7 lines
110 B
Rust
//@ check-pass
|
|
|
|
#![feature(precise_capturing)]
|
|
|
|
fn elided(x: &()) -> impl Sized + use<'_> { x }
|
|
|
|
fn main() {}
|