725df49c8c
(cherry picked from commit f3fa779)
10 lines
120 B
Kotlin
Vendored
10 lines
120 B
Kotlin
Vendored
class ConvertToInit {
|
|
fun foo() {}
|
|
|
|
fun bar() {}
|
|
|
|
constructor(<caret>) {
|
|
foo()
|
|
bar()
|
|
}
|
|
} |