baa0f2dc1b
Caret placement is at the end of new fun/property #KT-25313 Fixed
10 lines
137 B
Plaintext
Vendored
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
|
|
}
|