e57d34dd9e
- [JS IR] Unmute fixed tests - [IrText] Update testdata - [WASM] Temporary turn wasm test off - [FirText] Temporary turn fit text tests off - [JVM IR] Turn off klib jvm test - [IR] Add new test
10 lines
166 B
Kotlin
Vendored
10 lines
166 B
Kotlin
Vendored
// IGNORE_BACKEND_FIR: ANY
|
|
object A
|
|
|
|
enum class En { X }
|
|
|
|
operator fun A.invoke(i: Int) = i
|
|
operator fun En.invoke(i: Int) = i
|
|
|
|
val test1 = A(42)
|
|
val test2 = En.X(42) |