Sign in
◑
Theme
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
cfg
/
declarations
/
classesAndObjects
/
EnumEntryRefersCompanion.kt
blob: 0e58b3589108f8b9f2d06ba5cf251569b80f56c8 [
file
]
enum
class
EE
(
val x
:
Int
)
{
INSTANCE
(
Companion
.
foo
()),
ANOTHER
(
foo
());
companion
object
{
fun foo
()
=
42
}
}