14 lines
254 B
Kotlin
Vendored
14 lines
254 B
Kotlin
Vendored
// PSI_ELEMENT: org.jetbrains.kotlin.psi.KtNamedFunction
|
|
// OPTIONS: usages
|
|
// FIR_IGNORE
|
|
|
|
package anonymousUnused
|
|
|
|
fun main(args: Array<String>) {
|
|
fun localObject() = object : Any() {
|
|
fun <caret>f() {
|
|
}
|
|
}
|
|
|
|
localObject().f()
|
|
} |