10 lines
153 B
Kotlin
10 lines
153 B
Kotlin
package codegen.function.defaults6
|
|
|
|
import kotlin.test.*
|
|
|
|
open class Foo(val x: Int = 42)
|
|
class Bar : Foo()
|
|
|
|
@Test fun runTest() {
|
|
println(Bar().x)
|
|
} |