mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 00:21:35 +00:00
7 lines
82 B
Plaintext
Vendored
7 lines
82 B
Plaintext
Vendored
>>> val c = "OK"
|
|
>>> inner class A {
|
|
... fun foo() = c
|
|
... }
|
|
>>> A().foo()
|
|
OK
|