rust/tests/target/non-lifetime-binders.rs
2023-07-19 22:18:51 -05:00

11 lines
166 B
Rust

fn main()
where
for<'a, T: Sized + 'a, const C: usize> [&'a T; C]: Sized,
{
let x = for<T> || {};
let y: dyn for<T> Into<T>;
let z: for<T> fn(T);
}