Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
enum
/
wrongUnitializedEnumCompanion.kt
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"
}
}