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

8 lines
139 B
Kotlin

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