8c8ed3a1ee
#KT-1388 Fixed
9 lines
220 B
Plaintext
9 lines
220 B
Plaintext
//KT-750 Type inference failed: Constraint violation
|
|
fun main(args : Array<String>) {
|
|
var i : Int? = Integer.valueOf(100)
|
|
var s : Int? = Integer.valueOf(100)
|
|
|
|
val o = i .sure() + s.sure()
|
|
System.out.println(o)
|
|
}
|