Files
kotlin-fork/backend.native/tests/codegen/function/defaults8.kt
T
2017-02-15 14:48:28 +03:00

11 lines
148 B
Kotlin

class Foo {
fun test(x: Int = 1) = x
}
class Bar {
fun test(x: Int = 2) = x
}
fun main(args : Array<String>) {
println(Bar().test())
}