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