11 lines
197 B
Kotlin
Vendored
11 lines
197 B
Kotlin
Vendored
// PROBLEM: none
|
|
// WITH_RUNTIME
|
|
// LANGUAGE_VERSION: 1.2
|
|
fun test(foo: Int?) {
|
|
<caret>if (foo == null) {
|
|
throw IllegalArgumentException("test")
|
|
}
|
|
bar(foo)
|
|
}
|
|
|
|
fun bar(i: Int) {} |