Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
plugins
/
groovy
/
testdata
/
highlighting
/
OverrideAnnotation.groovy
blob: 3db0f26ba4e03b2c7f743e61521f6a2d4c88e50e [
file
] [
log
] [
blame
]
class
Test
{
String
str
def
foo
(){}
}
class
Foo
extends
Test
{
<
warning descr
=
"Method does not override method from its super class"
>
@Override
</
warning
>
def
foo
(
String
s
){}
}