dmd/compiler/test/fail_compilation/biterrors2.d
2022-07-09 18:53:07 +02:00

17 lines
408 B
D

/* REQUIRED_ARGS: -preview=bitfields
* TEST_OUTPUT:
---
fail_compilation/biterrors2.d(100): Error: variable `biterrors2.a` bit-field must be member of struct, union, or class
fail_compilation/biterrors2.d(104): Error: bit-field `b` has zero width
fail_compilation/biterrors2.d(105): Error: bit-field type `float` is not an integer type
---
*/
#line 100
int a : 2;
struct S
{
int b:0;
float c:3;
}