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

11 lines
181 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);
}