Files
kotlin-fork/compiler/testData/readKotlinBinaryClass/prop/ExtVarIntTQInClass.kt
T
2012-01-17 19:32:18 +04:00

8 lines
135 B
Kotlin

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