Java to Kotlin converter: more smartness about variables nullability

This commit is contained in:
Valentin Kipyatkov
2014-06-04 16:35:34 +04:00
parent f96721fa7e
commit 15ffb6768c
9 changed files with 104 additions and 12 deletions
@@ -0,0 +1,8 @@
//file
class C {
private String s = null;
void foo() {
s = "x"
}
}