Files
kotlin-fork/compiler/testData/diagnostics/tests/enum/interfaceWithEnumKeyword.kt
T

8 lines
218 B
Kotlin
Vendored

<!ILLEGAL_ENUM_ANNOTATION!>enum<!> interface Some {
// Enum part
<!ABSTRACT_MEMBER_NOT_IMPLEMENTED, ENUM_ENTRY_USES_DEPRECATED_OR_NO_DELIMITER!>D<!>
// Interface like part
fun test()
val foo: Int
}