aeefdffaab
#KT-8427 Fixed
22 lines
263 B
Kotlin
Vendored
22 lines
263 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
// DISABLE-ERRORS
|
|
interface T<X> {
|
|
val <caret>foo: X
|
|
}
|
|
|
|
class U : T<String> {
|
|
|
|
}
|
|
|
|
class V : T<Int> {
|
|
|
|
}
|
|
|
|
class Z : T<Int> by V() {
|
|
|
|
}
|
|
|
|
class W : T<Boolean> {
|
|
override val foo: Boolean
|
|
get() = throw UnsupportedOperationException()
|
|
} |