mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 00:21:26 +00:00
10 lines
264 B
Kotlin
Vendored
10 lines
264 B
Kotlin
Vendored
fun test(a: Any?, b: Any?, c: Any?) {
|
|
when (null) {
|
|
a -> throw IllegalArgumentException("a is null")
|
|
b -> throw IllegalArgumentException("b is null")
|
|
c -> throw IllegalArgumentException("c is null")
|
|
}
|
|
}
|
|
|
|
// 0 areEqual
|
|
// 3 IFNONNULL |