KT-1388 Parse static final fields from java binary classes as non-null
#KT-1388 Fixed
This commit is contained in:
@@ -3,5 +3,5 @@
|
||||
|
||||
fun foo(maybe: Int?) {
|
||||
val i : Int = maybe ?: throw RuntimeException("No value")
|
||||
System.out?.println(i)
|
||||
System.out.println(i)
|
||||
}
|
||||
|
||||
@@ -15,7 +15,7 @@ fun foo(){
|
||||
}
|
||||
|
||||
bar()
|
||||
System.out?.println(local)
|
||||
System.out.println(local)
|
||||
}
|
||||
|
||||
fun <T> Iterable<T>.foreach(operation: (element: T) -> Unit) {
|
||||
|
||||
Reference in New Issue
Block a user