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

7 lines
98 B
Kotlin
Vendored

interface I
class <caret>A: I {
// INFO: {"checked": "true"}
public fun foo(): Int = 1
}