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

8 lines
146 B
Kotlin
Vendored

// FIR_IDENTICAL
object Host {
val `____` = { -> }
fun testFunTypeVal() {
<!UNDERSCORE_USAGE_WITHOUT_BACKTICKS!>____<!>()
}
}