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

8 lines
140 B
Kotlin
Vendored

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