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