"abstract" modifier on enum class is an error

#KT-3454 Fixed
This commit is contained in:
Pavel V. Talanov
2014-10-09 22:21:03 +04:00
parent 6eae62c235
commit c04b52561e
17 changed files with 29 additions and 10 deletions
@@ -68,7 +68,7 @@ fun t1() {
b = <!UNUSED_VALUE!>3<!>
}
abstract enum class ProtocolState {
enum class ProtocolState {
WAITING {
override fun signal() = ProtocolState.TALKING
}