// DONT_TARGET_EXACT_BACKEND: WASM // WASM_MUTE_REASON: IMPLEMENTING_FUNCTION_INTERFACE // IGNORE_BACKEND: JS_IR // IGNORE_BACKEND: JS_IR_ES6 // TODO: muted automatically, investigate should it be ran for JS or not // IGNORE_BACKEND: JS val p = { "OK" }() val getter: String get() = { "OK" }() fun f() = { "OK" }() val obj = object : Function0 { override fun invoke() = "OK" } fun box(): String { if (p != "OK") return "FAIL" if (getter != "OK") return "FAIL" if (f() != "OK") return "FAIL" if (obj() != "OK") return "FAIL" return "OK" }