mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
11 lines
166 B
D
11 lines
166 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/ice10616.d(8): Error: class `ice10616.A` is forward referenced when looking for `B`
|
|
---
|
|
*/
|
|
|
|
class A : A.B
|
|
{
|
|
interface B {}
|
|
}
|