Files
2024-02-16 10:19:38 +00:00

36 lines
417 B
Kotlin
Vendored

package test
val test1: KProperty0<String>
field = Foo::a
get
val test1a: KProperty0<String>
field = Foo::a
get
val test2: KFunction0<String>
field = Foo::foo
get
val test2a: KFunction0<String>
field = Foo::foo
get
object Foo {
val a: String
field = ""
get
private constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
fun foo(): String {
return ""
}
}