MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / failoffset.d
blobff0d26be6737f67d2856cbcbabbe315fc97a6fdf
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/failoffset.d(12): Error: no property `offset` for `b` of type `int`
5 fail_compilation/failoffset.d(12): while evaluating: `static assert(b.offset == 4)`
6 ---
7 */
9 void main()
11 struct S { int a, b; }
12 static assert(S.b.offset == 4);