mirror of
https://github.com/rust-lang/rust.git
synced 2026-05-29 12:36:35 +03:00
11 lines
181 B
Rust
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);
|
|
}
|