Sign in
android
/
platform
/
tools
/
idea
/
c810bbf46e7246636afe1d18947a460cedc5d24d
/
.
/
plugins
/
groovy
/
testdata
/
highlighting
/
DelegatedMethodIsImplemented.groovy
blob: 4969ff2a5a669ab51e0e18afd51f80f5b5ad448e [
file
] [
log
] [
blame
]
interface
X
<
T
>
{
def
foo
(
X
<?>
x
)
}
class
A
{
@Delegate
public
X list
=
[]
}
<
error descr
=
"Method 'foo' is not implemented"
>
class
Y
implements
X
</
error
>{
def
foo
(
X
<
String
>
x
){}
}