Files
kotlin-fork/compiler/testData/diagnostics/tests/functionAsExpression/NameDeprecation.fir.kt
T
2020-03-27 16:46:59 +03:00

10 lines
151 B
Kotlin
Vendored

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