Files
kotlin-fork/analysis/analysis-api/testData/components/scopeProvider/declaredMemberScope/scriptWithClassDeclaration.kts
T
2023-10-10 13:38:00 +00:00

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
}