mirror of
https://github.com/github/codeql.git
synced 2025-12-20 02:44:30 +01:00
10 lines
131 B
Kotlin
10 lines
131 B
Kotlin
class C {
|
|
var p: Int
|
|
get() = 1
|
|
set(value) {}
|
|
fun fn() {
|
|
val prop = C::p
|
|
prop(this)
|
|
}
|
|
}
|