MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail3581a.d
blob56e8c0c4c11fe75d4bfbc698096f93412dd8f86b
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail3581a.d(9): Error: function `fail3581a.B.f` cannot override a non-virtual function
5 ---
6 */
8 class A { void f() {} }
9 class B : A { static override void f() {}; }
11 void main() {}