This commit is contained in:
Dmitry Jemerov
2009-09-10 20:33:13 +04:00
parent 571ab0fc93
commit 48a701e11e
24 changed files with 9 additions and 3 deletions
@@ -0,0 +1,16 @@
public class Test {
class Impl extends Base {
@Override
public String get() {
return "239";
}
}
abstract class Base implements Int {
public abstract String <caret>get();
}
interface Int {
}
}