Files
kotlin-fork/idea/testData/intentions/implementAsConstructorParameter/enumClass.kt.after
T
Alexander Podkhalyuzin baa0f2dc1b Override completion in expect class should behave differently
Caret placement is at the end of new fun/property

#KT-25313 Fixed
2018-09-10 14:23:48 +03:00

10 lines
137 B
Plaintext
Vendored

// WITH_RUNTIME
// DISABLE-ERRORS
interface T<X> {
val foo: X
}
enum class E(override val foo: Int<caret>) : T<Int> {
A, B, C
}