Files
kotlin-fork/compiler/testData/loadKotlin/prop/ExtVarTQIntInClass.kt
T

8 lines
140 B
Kotlin

package test
class ExtValPIntInClass<P> {
var P?.asas: Int
get() = throw Exception()
set(p: Int) = throw Exception()
}