Files
kotlin-fork/compiler/testData/diagnostics/tests/regressions/ErrorsOnIbjectExpressionsAsParameters.kt
T

7 lines
71 B
Kotlin
Vendored

// FIR_IDENTICAL
fun foo(a : Any) {}
fun test() {
foo(object {});
}