9 lines
92 B
Kotlin
Vendored
9 lines
92 B
Kotlin
Vendored
class C {
|
|
init {
|
|
<caret>foo()
|
|
bar()
|
|
}
|
|
}
|
|
|
|
fun foo() = 1
|
|
fun bar() = 2 |