12 lines
124 B
Kotlin
Vendored
12 lines
124 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
package test
|
|
|
|
data class My(val x: Int)
|
|
|
|
fun foo(f: () -> My) {}
|
|
|
|
fun test() {
|
|
foo <caret>{ My(42) }
|
|
}
|