blob: 8230fbcece30227878f9aa957d1f8159faadaa4b [file] [log] [blame]
// "Implement method 'foo'" "false"
abstract class Test {
abstract void f<caret>oo();
}
class TImple extends Test {
void foo() {}
}