Sign in
android
/
platform
/
tools
/
idea
/
ec3fb1e06285c0467a7a20360ca80453bc7635d4
/
.
/
java
/
java-tests
/
testData
/
codeInsight
/
overrideImplement
/
afterTestMissed.java
blob: d6b228578cc30a03e6be6617418308a6668e4cb1 [
file
] [
log
] [
blame
]
class
f
{
@org
.
testng
.
annotations
.
BeforeMethod
String
foo
()
{
return
""
;}
}
class
ff
extends
f
{
@Override
String
foo
()
{
<
selection
>
return
super
.
foo
();</
selection
>
}
}