MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / ice9338.d
blob5f77817d7e34b0ccd887069f998ab84c74c9f7b3
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/ice9338.d(13): Error: value of `this` is not known at compile time
5 fail_compilation/ice9338.d(14): Error: value of `this` is not known at compile time
6 ---
7 */
9 class Foo
11 void test()
13 enum members1 = makeArray();
14 enum members2 = this.makeArray();
17 string[] makeArray()
19 return ["a"];