Safe Delete: Support secondary constructors

This commit is contained in:
Alexey Sedunov
2015-03-18 18:16:38 +03:00
parent cefd8b43a0
commit b45965b290
8 changed files with 67 additions and 16 deletions
@@ -0,0 +1,7 @@
class J extends B {
B b = new B(1);
public J() {
super(1);
}
}