8f2fc3d1e2
KT-64953: Required part for enum translation
7 lines
150 B
Kotlin
Vendored
7 lines
150 B
Kotlin
Vendored
class Foo {
|
|
fun alloc() {}
|
|
fun copy(): Foo = Foo()
|
|
fun mutableCopy(): Foo = Foo()
|
|
fun new(): Foo = Foo()
|
|
fun init(): Foo = Foo()
|
|
} |