8 lines
134 B
Kotlin
Vendored
8 lines
134 B
Kotlin
Vendored
// TARGET_BACKEND: JVM
|
|
package test
|
|
|
|
class ExtValInClass {
|
|
val Int.asas: java.util.List<Int>?
|
|
get() = throw Exception()
|
|
}
|