blob: c991d4752ee9d9dfba1d4034736474bc35325057 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/failoffset.d(12): Error: no property 'offset' for type 'int'
fail_compilation/failoffset.d(12): while evaluating: `static assert(b.offset == 4)`
---
*/
void main()
{
struct S { int a, b; }
static assert(S.b.offset == 4);
}