Renamed test data folder

This commit is contained in:
Valentin Kipyatkov
2015-10-16 22:47:30 +03:00
parent dc909ac166
commit 4e73fe0f39
18 changed files with 114 additions and 114 deletions
@@ -0,0 +1,15 @@
import javaApi.Base
internal class C : Base() {
fun f() {
val other = Base()
val value = other.property + property
other.property = 1
property = other.property + value
getBase(property).property = 0
}
private fun getBase(i: Int): Base {
return Base()
}
}