dmd/compiler/test/fail_compilation/fail19209.d
2023-06-12 15:46:15 +02:00

17 lines
380 B
D

/*
TEST_OUTPUT:
---
fail_compilation/fail19209.d(16): Error: function `fail19209.Spammer.method()` does not override any function, did you mean to override variable `fail19209.Spam.method`?
fail_compilation/fail19209.d(16): Functions are the only declarations that may be overridden
---
*/
class Spam
{
int method;
}
class Spammer : Spam
{
override method() {}
}