Files
kotlin-fork/idea/testData/refactoring/pullUp/k2j/defaultValuesInOverride.kt
T

11 lines
157 B
Kotlin
Vendored

class <caret>B : A() {
// INFO: {"checked": "true", "toAbstract": "true"}
fun foo(n: Int = 1) {
}
}
fun test() {
B().foo()
B().foo(2)
}