14 lines
192 B
Kotlin
Vendored
14 lines
192 B
Kotlin
Vendored
package functionReference
|
|
|
|
fun test(s: () -> String) {
|
|
s()
|
|
}
|
|
|
|
fun a() = "OK"
|
|
|
|
fun main(args: Array<String>) {
|
|
//Breakpoint!
|
|
test(::a)
|
|
}
|
|
// NB: stepping is not clear
|
|
// STEP_INTO: 7 |