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

10 lines
250 B
Plaintext

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