Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
plugins
/
groovy
/
testdata
/
highlighting
/
RawOverriddenMethod.groovy
blob: 00b6a3c2fe145fa330e71580fc7b44cd9407e762 [
file
] [
log
] [
blame
]
interface
Foo
{
def
foo
(
Map
<
String
,
String
>
map
)
}
class
Bar
implements
Foo
{
// error: Method 'foo' is not implemented
def
foo
(
Map
map
)
{}
}