13 lines
249 B
Plaintext
Vendored
13 lines
249 B
Plaintext
Vendored
// "Remove default parameter value" "true"
|
|
// DISABLE-ERRORS
|
|
interface Foo {
|
|
fun test(x: Int, y: Int)
|
|
}
|
|
|
|
expect class Bar : Foo {
|
|
override fun test(x: Int, y: Int)
|
|
}
|
|
|
|
actual class Bar : Foo {
|
|
actual override fun test(x: Int, y: Int) {}
|
|
} |