blob: ee109e4fc9af14c165833be5ea4fdf0694098bdc [file]
// IGNORE_BACKEND: JS_IR
// IGNORE_BACKEND: JS_IR_ES6
// TODO: Enable when JS backend supports Java class library, since FunctionX are required for interoperation
// IGNORE_IR_DESERIALIZATION_TEST: JS_IR
// ^^^ Source code is not compiled in JS.
class Works() : Function0<Any> {
public override fun invoke():Any {
return "Works" as Any
}
}
class Broken() : Function0<String> {
public override fun invoke():String {
return "Broken"
}
}
fun box(): String {
val works1: ()->Any = Works();
works1()
val broken1: ()->String = Broken();
broken1()
return "OK"
}