blob: bbec698a740bb843cd3b0f3530ca27fa83942243 [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);
}