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

17 lines
167 B
Kotlin

package one
class A constructor(a: Int) {
fun boo() {
fun bar() {
}
}
val i: Int = 42
init {
fun foo() {
}
}
}