Files
kotlin-fork/compiler/testData/codegen/box/compileKotlinAgainstKotlin/defaultConstructor.kt
T

15 lines
154 B
Kotlin
Vendored

// MODULE: lib
// FILE: A.kt
package aaa
class A(val a: Int = 1)
// MODULE: main(lib)
// FILE: B.kt
fun box(): String {
aaa.A()
return "OK"
}