Files
kotlin-fork/compiler/testData/diagnostics/tests/PropertyInitializers.fir.kt
T

9 lines
119 B
Kotlin
Vendored

class Foo(val a: Int, b: Int) {
val c = a + b
val d: Int
get() = a
val e: Int
get() = b
}