blob: 256a299c9f745734f8fe14cfe723c92342e7174f [file]
// See KT-20959
enum class Foo {;
companion object {
val x = <!DEBUG_INFO_LEAKING_THIS!>foo<!>() // there should be no UNINITIALIZED_ENUM_COMPANION
private fun foo() = "OK"
}
}