mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 08:31:29 +00:00
33 lines
672 B
Kotlin
Vendored
33 lines
672 B
Kotlin
Vendored
// TODO: muted automatically, investigate should it be ran for JS or not
|
|
// IGNORE_BACKEND: JS
|
|
|
|
// WITH_REFLECT
|
|
|
|
fun String.foo(): Int = length
|
|
|
|
var state = "Fail"
|
|
|
|
fun bar(result: String) {
|
|
state = result
|
|
}
|
|
|
|
fun box(): String {
|
|
val f = (String::foo).call("abc")
|
|
if (f != 3) return "Fail: $f"
|
|
|
|
try {
|
|
(String::foo).call()
|
|
return "Fail: IllegalArgumentException should have been thrown"
|
|
}
|
|
catch (e: IllegalArgumentException) {}
|
|
|
|
try {
|
|
(String::foo).call(42)
|
|
return "Fail: IllegalArgumentException should have been thrown"
|
|
}
|
|
catch (e: IllegalArgumentException) {}
|
|
|
|
(::bar).call("OK")
|
|
return state
|
|
}
|