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

7 lines
95 B
Kotlin
Vendored

package test
class ExtValInClass<T> {
val Int.asas: T
get() = throw Exception()
}