http://d.puremagic.com/issues/show_bug.cgi?id=467
------- Comment #1 from roel.mathys at gmail.com 2006-10-28 05:44 -------
Example code:
import std.stdio;
interface C
{
void f();
}
class CC : C,C
{
void f() { writefln("hello"); }
}
void main()
{
CC cc = new CC();
cc.f();
}
--