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

25 lines
337 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
}
}