class A { constructor(a: Int) { val b = (a + 1) * 2 val t = a + b } } fun test() { A(1) }