8 lines
130 B
Kotlin
Vendored
8 lines
130 B
Kotlin
Vendored
package demo
|
|
|
|
internal object Test {
|
|
fun bar(a: Int) {
|
|
if (a < 0)
|
|
throw RuntimeException("a = $a")
|
|
}
|
|
} |