mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
17 lines
380 B
D
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() {}
|
|
}
|