MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / diag8787.d
blobc4ff6d2bb5ff9ca7a8bd898a58fc74c70f852fdd
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/diag8787.d(10): Error: function `diag8787.I.f` function body only allowed in `final` functions in interface `I`
5 ---
6 */
8 interface I
10 void f() { }
13 void main() {}