39112d6327
initial support for constructors added
6 lines
114 B
Kotlin
6 lines
114 B
Kotlin
namespace {
|
|
public open class MyClass() {
|
|
open private fun init(arg1 : Int, arg2 : Int, arg3 : Int) : Unit {
|
|
}
|
|
}
|
|
} |