mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-17 16:31:32 +00:00
10 lines
112 B
Rust
10 lines
112 B
Rust
//@ check-pass
|
|
|
|
#![feature(target_feature_11)]
|
|
|
|
struct S<T>(T)
|
|
where
|
|
[T; (|| {}, 1).1]: Copy;
|
|
|
|
fn main() {}
|