88cea0a88c
Before this commit, expect enum could find actual enum entries as its implementation, now it cannot. #KT-28206 Fixed
6 lines
80 B
Kotlin
Vendored
6 lines
80 B
Kotlin
Vendored
package test
|
|
|
|
actual enum class Some(val x: Int) {
|
|
FIRST(1),
|
|
SECOND(2)
|
|
} |