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>
}
}