summaryrefslogtreecommitdiffstats
path: root/src/test/ui/rfcs/rfc-2396-target_feature-11/issue-99876.rs
blob: 033dcdfc08db036e397eb0110d9507ae7a6bbd2d (plain)
1
2
3
4
5
6
7
8
9
// check-pass

#![feature(target_feature_11)]

struct S<T>(T)
where
    [T; (|| {}, 1).1]: Copy;

fn main() {}