mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-24 07:44:10 +00:00
bfe5189904
This reverts commit b379d216ee
.
10 lines
111 B
Rust
10 lines
111 B
Rust
// check-pass
|
|
|
|
#![feature(target_feature_11)]
|
|
|
|
struct S<T>(T)
|
|
where
|
|
[T; (|| {}, 1).1]: Copy;
|
|
|
|
fn main() {}
|