blob: 04757063bd95f123bebd3b424a814dda238a5040 [file] [log] [blame]
interface I {
def foo()
}
class A implements I {
def foo(){}
}
class B implements I{
@Delegate
def A a
}
<error descr="Method 'foo' is not implemented">class C implements I</error> {
//nothing here
}