239cfa6d29
^KT-61800
14 lines
171 B
Kotlin
Vendored
14 lines
171 B
Kotlin
Vendored
// DO_NOT_CHECK_NON_PSI_SYMBOL_RESTORE
|
|
// script
|
|
abstract class Person {
|
|
abstract val name: String
|
|
}
|
|
|
|
fun foo(action: () -> Int) {
|
|
action()
|
|
}
|
|
|
|
foo {
|
|
42 + 42
|
|
}
|