d: Merge upstream dmd, druntime 4c18eed967, phobos d945686a4.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / biterrors3.d
blob09d7be66d6430c8749083462063919b85e554910
1 /* REQUIRED_ARGS: -preview=bitfields
2 * TEST_OUTPUT:
3 ---
4 fail_compilation/biterrors3.d(103): Error: storage class not allowed for bit-field declaration
5 fail_compilation/biterrors3.d(106): Error: expected `,` or `=` after identifier, not `:`
6 fail_compilation/biterrors3.d(106): Error: found `:` when expecting `,`
7 fail_compilation/biterrors3.d(106): Error: found `3` when expecting `identifier`
8 ---
9 */
11 #line 100
13 struct S
15 static int : 3;
18 enum E { d : 3 }