blob: b5a11d45c3cc85e296e0187815c82a5956522049 [file] [log] [blame]
/*
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(); }