Home | History | Annotate | Download | only in dcl.align

Lines Matching refs:S1

18 struct S1 {
25 S1 s1;
27 struct alignas(2) S4 : S1 { // expected-error {{requested alignment is less than minimum alignment of 8 for type 'S4'}}
29 struct S5 : S1 {
30 alignas(2) S1 s1; // expected-error {{requested alignment is less than minimum alignment of 8 for type 'S1'}}
33 S1 s1;
35 struct S7 : S1 {
37 struct alignas(2) alignas(8) alignas(1) S8 : S1 {
40 S1 s1 alignas(4); // expected-error {{requested alignment is less than minimum alignment of 8 for type 'S1'}}
55 template struct X<16, 8, S1>;
56 template struct X<4, 4, S1>; // expected-note {{instantiation}}