Files
kotlin/idea/testData/quickfix/implement/nestedPrivateInterface.kt

9 lines
171 B
Kotlin
Vendored

// "Implement interface" "true"
// SHOULD_BE_AVAILABLE_AFTER_EXECUTION
// WITH_RUNTIME
class Container {
private interface <caret>Base {
var z: Double
}
}