J2K: Detect @NotNull fields

This commit is contained in:
Andrey Ponomarev
2013-02-21 00:46:53 +01:00
parent 3d4a5256e6
commit 514c7b553f
2 changed files with 2 additions and 2 deletions
@@ -1,6 +1,6 @@
package test
public open class Test(str : String) {
var myStr : String? = "String2"
var myStr : String = "String2"
public open fun sout(str : String) : Unit {
System.out?.println(str)
}