MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / biterrors.d
bloba8f0faa073926a41b8fa43b8c275926e998969d6
1 /* REQUIRED_ARGS: -preview=bitfields
2 * TEST_OUTPUT:
3 ---
4 fail_compilation/biterrors.d(103): Error: initializer not allowed for bit-field declaration
5 fail_compilation/biterrors.d(104): Error: storage class not allowed for bit-field declaration
6 ---
7 */
9 #line 100
11 struct S
13 int i : 3 = 7;
14 static int j : 3;