Files
kotlin-fork/compiler/testData/ir/irText/expressions/kt51036.kt
T
2022-01-31 12:18:19 +00:00

9 lines
155 B
Kotlin
Vendored

// WITH_STDLIB
// SKIP_KT_DUMP
class A {
companion object;
operator fun String.invoke() = Unit
fun close() = synchronized(this) { "Abc" }()
}