15 lines
145 B
Kotlin
Vendored
15 lines
145 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
interface Some {
|
|
fun foo()
|
|
}
|
|
|
|
class Other {
|
|
fun test() {
|
|
val a = 1<caret>
|
|
}
|
|
fun otherTest() {
|
|
|
|
}
|
|
}
|
|
|