10 lines
104 B
Kotlin
Vendored
10 lines
104 B
Kotlin
Vendored
// FALSE
|
|
interface Some
|
|
|
|
fun test() {
|
|
object : Some {
|
|
fun test(<caret>) {
|
|
|
|
}
|
|
}
|
|
} |