8 lines
139 B
Kotlin
Vendored
8 lines
139 B
Kotlin
Vendored
package test
|
|
|
|
class ExtValPIntInClass<P> {
|
|
var P.asas: Int
|
|
get() = throw Exception()
|
|
set(p: Int) = throw Exception()
|
|
}
|