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

11 lines
263 B
Plaintext

package one
/* anchor --> */open class ClassWithParameter/* anchor --> */(/* anchor --> */s: String/* <-- */)/* <-- *//* <-- */
/* anchor --> */class TopLevelClass : ClassWithParameter("${
{
fun str(): String = 42
str()
}()
}")/* <-- */