Files
kotlin-fork/idea/testData/quickfix/implement/nestedPrivateInterface.kt.after
T

16 lines
327 B
Plaintext
Vendored

// "Implement interface" "true"
// SHOULD_BE_AVAILABLE_AFTER_EXECUTION
// WITH_RUNTIME
class Container {
private interface Base {
var z: Double
}
class BaseImpl : Base {
override var z: Double
get() = throw UnsupportedOperationException()
set(value) {
}
}
}