mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
11 lines
211 B
D
11 lines
211 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail51.d(11): Error: interface `fail51.B` circular inheritance of interface
|
|
---
|
|
*/
|
|
|
|
// interface A { void f(); }
|
|
|
|
interface A : B { void f(); }
|
|
interface B : A { void g(); }
|