Files
kotlin-fork/compiler/testData/loadJava/compiledKotlin/prop/ExtValIntListQOfIntInClass.kt
T

8 lines
134 B
Kotlin
Vendored

// TARGET_BACKEND: JVM
package test
class ExtValInClass {
val Int.asas: java.util.List<Int>?
get() = throw Exception()
}