Files
kotlin-fork/idea/testData/refactoring/pullUp/k2k/publicToInterface.kt
T

7 lines
98 B
Kotlin
Vendored

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