Files
kotlin/compiler/testData/diagnostics/tests/objects/objectInsideFun.kt

11 lines
170 B
Kotlin
Vendored

interface A {
val foo: Int
val bar: String
get() = ""
}
fun test(foo: Int, bar: Int) {
object : A {
override val foo: Int = foo + bar
}
}