fixup! [IR] Workaround expectActualOverloads test failure
diff --git a/compiler/testData/codegen/box/multiplatform/k2/basic/expectActualOverloads.kt b/compiler/testData/codegen/box/multiplatform/k2/basic/expectActualOverloads.kt
index 9792c3d..71c0052 100644
--- a/compiler/testData/codegen/box/multiplatform/k2/basic/expectActualOverloads.kt
+++ b/compiler/testData/codegen/box/multiplatform/k2/basic/expectActualOverloads.kt
@@ -1,6 +1,9 @@
// IGNORE_BACKEND_K1: JS, JS_IR, JS_IR_ES6, NATIVE, WASM
// !LANGUAGE: +MultiPlatformProjects
+// Ignore until KT-62926 is fixed
+// IGNORE_BACKEND_K2: ANY
+
// MODULE: common
// TARGET_PLATFORM: Common
// FILE: commonMain.kt
@@ -11,13 +14,11 @@
expect fun foo(i: Int): Int
-// Uncomment once KT-62926 is fixed
-//expect val Int.k: Int
+expect val Int.k: Int
expect val String.k: String
-// Uncomment once KT-62926 is fixed
-//expect var Int.l: Int
+expect var Int.l: Int
expect var String.l: String
@@ -32,15 +33,13 @@
actual fun foo(s: String) = s
-// Uncomment once KT-62926 is fixed
-//actual val Int.k: Int get() = 42
+actual val Int.k: Int get() = 42
actual val String.k: String get() = this
-// Uncomment once KT-62926 is fixed
-//actual var Int.l: Int
-// get() = 48
-// set(value) {}
+actual var Int.l: Int
+ get() = 48
+ set(value) {}
actual var String.l: String
get() = this