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