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