mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
10 lines
182 B
D
10 lines
182 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail153.d(10): Error: class `fail153.Bar` cannot inherit from class `Foo` because it is `final`
|
|
---
|
|
*/
|
|
|
|
final class Foo { }
|
|
|
|
class Bar : Foo { }
|