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