Files
kotlin-fork/testData/ast/class/file/privateInit.kt
T
Sergey Ignatov 39112d6327 example with customer builder added,
initial support for constructors added
2011-11-09 16:04:57 +04:00

6 lines
114 B
Kotlin

namespace {
public open class MyClass() {
open private fun init(arg1 : Int, arg2 : Int, arg3 : Int) : Unit {
}
}
}