blob: fcfb7b7141a6ee326ad6e5fba10c9e85985bb720 [file] [log] [blame]
/* REQUIRED_ARGS: -o- -de
TEST_OUTPUT:
---
fail_compilation/test17586.d(13): Deprecation: `test17586.D.foo` is overriding the deprecated method `test17586.C.foo`
---
*/
class C{
deprecated void foo(){}
}
class D : C{
override void foo(){}
}