mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 08:31:29 +00:00
17 lines
196 B
Kotlin
Vendored
17 lines
196 B
Kotlin
Vendored
package test
|
|
|
|
fun A.a(): String {
|
|
class B {
|
|
val b : String
|
|
get() = this@a.s
|
|
}
|
|
return B().b
|
|
}
|
|
|
|
class A {
|
|
val s : String = "OK"
|
|
}
|
|
|
|
fun box() : String {
|
|
return A().a()
|
|
} |