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

7 lines
95 B
Kotlin

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