mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 08:31:35 +00:00
9 lines
141 B
Kotlin
Vendored
9 lines
141 B
Kotlin
Vendored
// SIBLING:
|
|
fun main(args: Array<String>) {
|
|
<selection>val a = 1</selection>
|
|
lambda {
|
|
a
|
|
}
|
|
}
|
|
|
|
fun lambda(f: () -> Unit) {} |