Files
kotlin-fork/j2k/tests/testData/ast/misc/intNullability.kt
T
Pavel V. Talanov 21bc2887d2 Converter:
Omit Unit return type
Refactor handling of Unit type: extract separate object UnitType
2013-12-22 15:53:14 +04:00

9 lines
151 B
Kotlin

package demo
import kotlin.compatibility.*
open class Test() {
open fun test() {
var i : Int? = 10
var j : Int? = 10
System.out?.println(i!! + j!!)
}
}