mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
8 lines
240 B
Kotlin
8 lines
240 B
Kotlin
<info descr="null">fun</info>~ test(s: String?): Int {
|
|
if (s != null) {
|
|
<info descr="null">return@<info descr="null">test</info> 1</info>
|
|
}
|
|
<info descr="null">return 0</info>
|
|
}
|
|
val q = <info descr="null">test</info>("")
|