Java to Kotlin converter: fixed a bug with incorrect assignment generation

This commit is contained in:
Valentin Kipyatkov
2014-06-23 14:30:26 +04:00
parent a28e7b0872
commit 0e9edb7487
8 changed files with 23 additions and 6 deletions
@@ -0,0 +1,6 @@
import java.util.*
import kotlin.List
class A() {
var list: List<String> = ArrayList<String>()
}