blob: 2e00511fb9fda89565dd38e27c55089a119e3284 [file] [log] [blame]
class A(a: Int, i: Int = 1 + 2) {
init {
val t = i
}
}
fun test() {
A(1)
}