Files
kotlin-fork/analysis/low-level-api-fir/testdata/nonLocalDeclarationAnchors/localFunctionInsideFunctionLiteral.txt
T
2023-05-11 16:09:02 +02:00

9 lines
240 B
Plaintext

package one
/* anchor --> */open class ClassWithParameter/* anchor --> */(/* anchor --> */i: () -> Unit/* <-- */)/* <-- *//* <-- */
/* anchor --> */class TopLevelClass : ClassWithParameter({
fun foo(param: String) {
}
})/* <-- */