Files
kotlin-fork/compiler/testData/diagnostics/tests/deprecated/propertyWithInvoke.kt
T
2023-08-31 10:19:33 +00:00

8 lines
100 B
Kotlin
Vendored

// FIR_IDENTICAL
@Deprecated("No")
val f: () -> Unit = {}
fun test() {
<!DEPRECATION!>f<!>()
}