mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
4 lines
154 B
Kotlin
Vendored
4 lines
154 B
Kotlin
Vendored
import java.lang.RuntimeException
|
|
|
|
val k: Int? = param
|
|
if (k == null) System.out.println("Param is null") else throw RuntimeException("param is not null") |