Files
kotlin-fork/idea/testData/refactoring/pullUp/usedPrivateToClass.kt.after
T
Alexey Sedunov 39ff3c3000 Pull Up: Initial support
#KT-7330 Fixed
2015-07-28 18:48:29 +03:00

9 lines
127 B
Plaintext
Vendored

open class A {
// INFO: {"checked": "true"}
protected fun foo(): Int = 1
}
class B: A() {
fun bar() = foo() + 1
}