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

18 lines
318 B
Plaintext

package one
/* anchor --> */class A /* anchor --> */constructor(/* anchor --> */a: Int/* <-- */)/* <-- */ {
/* anchor --> */fun boo() {
fun bar() {
}
}/* <-- */
/* anchor --> */val i: Int = 42/* <-- */
/* anchor --> */init {
fun foo() {
}
}/* <-- */
}/* <-- */