Files
kotlin/compiler/testData/loadJava/compiledKotlin/prop/ExtVarIntTInClass.kt
2013-12-17 20:28:59 +04:00

8 lines
133 B
Kotlin

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