Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
2b455fc1ba7dcb99fa03fdfc31c7672d6ccfc9fd
/
.
/
analysis
/
symbol-light-classes
/
testData
/
structure
/
EnumEntries.kt
blob: 5eef2f06281b604806a387dff00102cb8b12cf28 [
file
]
package
one
.
two
interface
BaseInterface
enum
class
EnumEntries
{
FirstEntry
,
SecondEntryWithBody
{
fun foo
()
{
}
}
}
enum
class
EnumClassWithInterface
:
BaseInterface
{
NewFirstEntry
,
NewSecondEntryWithBody
{
fun foo
()
{
}
}
}