mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
12 lines
175 B
D
12 lines
175 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail259.d(11): Error: function `fail259.C.foo` does not override any function
|
|
---
|
|
*/
|
|
|
|
class C
|
|
{
|
|
final
|
|
override void foo(){}
|
|
}
|