mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
Can be used for implementing interfaces / abstract classes / sealed classes or extending open classes
11 lines
200 B
Kotlin
Vendored
11 lines
200 B
Kotlin
Vendored
// "Create subclass" "true"
|
|
// SHOULD_BE_AVAILABLE_AFTER_EXECUTION
|
|
|
|
class Container {
|
|
private open class <caret>Base {
|
|
open var x: String = ""
|
|
|
|
open fun foo(): String = ""
|
|
}
|
|
}
|