MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail19181.d
blob873e2929efed61462d0e0026b424ad1e79379045
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail19181.d(15): Error: undefined identifier `LanguageError`
5 ---
6 */
7 struct S
9 void opDispatch(string name, T)(T arg) { }
12 void main()
14 S s;
15 s.foo(LanguageError);