Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
enum
/
wrongUnitializedEnumCompanion.fir.kt
blob: d8913f128a745f65cea3f3527c107ae5b0f85b41 [
file
]
// See KT-20959
enum
class
Foo
{;
companion
object
{
val x
=
foo
()
// there should be no UNINITIALIZED_ENUM_COMPANION
private
fun foo
()
=
"OK"
}
}