Files
kotlin-fork/compiler/testData/asJava/lightClasses/LocalFunctions.kt
T

26 lines
355 B
Kotlin
Vendored

// p.A
package p
class A {
init {
fun localFunInInit() {}
}
constructor(x: Int) {
fun localFunInConstructor() {}
}
fun memberFun() {
fun localFunInMemberFun() {}
}
val property: Int
get() {
fun localFunInPropertyAccessor() {}
return 1
}
}
// FIR_COMPARISON