mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
15 lines
317 B
D
15 lines
317 B
D
/* REQUIRED_ARGS: -preview=bitfields
|
|
* TEST_OUTPUT:
|
|
---
|
|
fail_compilation/biterrors.d(103): Error: initializer not allowed for bit-field declaration
|
|
fail_compilation/biterrors.d(104): Error: storage class not allowed for bit-field declaration
|
|
---
|
|
*/
|
|
|
|
#line 100
|
|
|
|
struct S
|
|
{
|
|
int i : 3 = 7;
|
|
static int j : 3;
|
|
}
|