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

10 lines
147 B
Kotlin
Vendored

fun foo() {
class A
fun bar() {}
(fun bar() {})
fun A.foo() {}
(fun A.foo() {})
run(<!INFERENCE_ERROR!>fun foo() {}<!>)
}