mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-13 00:21:28 +00:00
10 lines
193 B
Kotlin
Vendored
10 lines
193 B
Kotlin
Vendored
// "Implement abstract class" "true"
|
|
// WITH_RUNTIME
|
|
// SHOULD_BE_AVAILABLE_AFTER_EXECUTION
|
|
|
|
class Container {
|
|
inner abstract class <caret>Base {
|
|
abstract fun foo(): String
|
|
}
|
|
}
|