Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
enum
/
enumEntryInAbstractEnum.fir.kt
blob: 316e4b77074281e95dcb25ebd30fcc917f6c02dd [
file
]
enum
class
EnumClass
{
E1
{
override
fun foo
()
=
1
override
val bar
:
String
=
"a"
},
<!
ABSTRACT_MEMBER_NOT_IMPLEMENTED_BY_ENUM_ENTRY
!>
E2
<!>
{
};
abstract
fun foo
():
Int
abstract
val bar
:
String
}