mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
11 lines
231 B
D
11 lines
231 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail3581b.d(9): Error: function `fail3581b.B.f` `private` method is not virtual and cannot override
|
|
---
|
|
*/
|
|
|
|
class A { void f() {} }
|
|
class B : A { private override void f() {}; }
|
|
|
|
void main() {}
|