MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail50.d
blobc6aa178bdaa4fee2a28bd6c79f28c428011f715f
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail50.d(12): Error: taking the address of non-static variable `a` requires an instance of `Marko`
5 fail_compilation/fail50.d(12): Error: variable `a` cannot be read at compile time
6 ---
7 */
9 struct Marko
11 int a;
12 int* m = &a;