MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail7424f.d
blob1af14f83d7e5dd95b6128c6c531fe63a8f07514e
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail7424f.d(10): Error: template `this.g()()` has no value
5 ---
6 */
7 struct S7424f
9 @property int g()() shared { return 0; }
10 void test() { int f = g; }