Safe Delete: Add test for primary constructor with usages in delegation calls

This commit is contained in:
Alexey Sedunov
2015-03-18 17:59:51 +03:00
parent 83e23aafe5
commit cefd8b43a0
6 changed files with 38 additions and 0 deletions
@@ -0,0 +1,5 @@
class J extends B {
public J() {
super();
}
}