Files
kotlin-fork/analysis/low-level-api-fir/testData/getOrBuildFir/wholeDeclaration/enum.kt
T

12 lines
156 B
Kotlin
Vendored

<expr>
enum class MyClass(val i: Int = foo()) : UnresolvedInterface {
ENTRY1,
ENTRY2(42);
fun boo(a: String) {
}
}
</expr>
fun foo() = 42