MATCH: Improve `A CMP 0 ? A : -A` set of patterns to use bitwise_equal_p.
[official-gcc.git] / gcc / testsuite / gdc.test / fail_compilation / test17586.d
blobfcfb7b7141a6ee326ad6e5fba10c9e85985bb720
1 /* REQUIRED_ARGS: -o- -de
2 TEST_OUTPUT:
3 ---
4 fail_compilation/test17586.d(13): Deprecation: `test17586.D.foo` is overriding the deprecated method `test17586.C.foo`
5 ---
6 */
8 class C{
9 deprecated void foo(){}
12 class D : C{
13 override void foo(){}