bamdmux
class Foo(var x: Long) { init { println("Init: $x") } constructor(l: Int): this(0L) { x = l.toLong() } }