Files
kotlin-fork/backend.native/tests/codegen/function/defaults9.kt
T
2017-10-20 18:25:05 +03:00

12 lines
203 B
Kotlin

package codegen.function.defaults9
import kotlin.test.*
class Foo {
inner class Bar(x: Int, val y: Int = 1) {
constructor() : this(42)
}
}
@Test fun runTest() = println(Foo().Bar().y)