KT-1388 Parse static final fields from java binary classes as non-null

#KT-1388 Fixed
This commit is contained in:
Stepan Koltsov
2012-05-13 00:53:37 +04:00
parent ae58c1c888
commit 8c8ed3a1ee
28 changed files with 80 additions and 50 deletions
+3 -3
View File
@@ -7,8 +7,8 @@ fun test() {
a?.plus(1)
}
val out : java.io.PrintStream? = null//= System.out
val ins = System.`in`
val out : java.io.PrintStream? = null
val ins : java.io.InputStream? = null
out?.println()
ins?.read()
@@ -277,4 +277,4 @@ fun f9(a : Int?) : Int {
if (a != null)
return a
return 1
}
}