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

8 lines
88 B
Plaintext
Vendored

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