Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
6fc27c22f44d8051bf2e89f1657c0d9741c281c0
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
enum
/
enumEntryInAbstractEnum.kt
blob: 7981535c30fd678fd2781120990e8da99093e04f [
file
]
// FIR_IDENTICAL
enum
class
EnumClass
{
E1
{
override
fun foo
()
=
1
override
val bar
:
String
=
"a"
},
<!
ABSTRACT_MEMBER_NOT_IMPLEMENTED
!>
E2
<!>
{
};
abstract
fun foo
():
Int
abstract
val bar
:
String
}