Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
plugins
/
groovy
/
testdata
/
highlighting
/
MethodImplementedByDelegate.groovy
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
}