Files
kotlin-fork/j2k/tests/testData/ast/constructors/artificialPrimary.kt
T
2014-07-25 16:54:22 +04:00

14 lines
244 B
Kotlin

public fun Test(): Test {
val __ = Test(null)
__.b = true
return __
}
public fun Test(s: String): Test {
return Test(s)
}
public class Test(private val s: String) {
var b: Boolean = false
var d: Double = 0.toDouble()
}