Safe Delete: Move test classes and test data to refactoring directory

This commit is contained in:
Alexey Sedunov
2015-12-08 16:32:16 +03:00
parent a76f43b66c
commit ffc8b6fd89
504 changed files with 229 additions and 229 deletions
@@ -0,0 +1,5 @@
class J extends B {
public J() {
super();
}
}
@@ -0,0 +1,11 @@
open class <caret>B() {
constructor(a: Int): this() {
}
}
open class A: B {
constructor(a: Int): super() {
}
}
@@ -0,0 +1 @@
class B has 3 usages that are not safe to delete.