Renamed test data folder

This commit is contained in:
Valentin Kipyatkov
2015-09-23 16:08:30 +03:00
parent ade9cbcafb
commit c8b6db4e57
57 changed files with 342 additions and 342 deletions
@@ -0,0 +1,19 @@
internal class C(val arg1: Int) {
var arg2: Int = 0
var arg3: Int = 0
constructor(arg1: Int, arg2: Int, arg3: Int) : this(arg1) {
this.arg2 = arg2
this.arg3 = arg3
}
constructor(arg1: Int, arg2: Int) : this(arg1) {
this.arg2 = arg2
arg3 = 0
}
init {
arg2 = 0
arg3 = 0
}
}