Files
kotlin-fork/compiler/testData/ir/irText/firProblems/localCompanion.kt.txt
T

26 lines
380 B
Plaintext
Vendored

fun main() {
local class Foo {
constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
@Suppress(names = ["WRONG_MODIFIER_CONTAINING_DECLARATION"])
local companion object Companion {
private constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
fun bar() {
}
}
}
Companion.bar()
}