Files
kotlin-fork/compiler/testData/diagnostics/tests/deprecated/propertyWithInvoke.fir.kt
T

8 lines
100 B
Kotlin
Vendored

// FIR_DISABLE_LAZY_RESOLVE_CHECKS
@Deprecated("No")
val f: () -> Unit = {}
fun test() {
f()
}