mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
11 lines
239 B
Kotlin
11 lines
239 B
Kotlin
// MODE: inheritors
|
|
|
|
/*<# block [ 1 Implementation] #>*/
|
|
interface SomeInterface {
|
|
/*<# block [ 1 Override] #>*/
|
|
fun interfaceMethodA() = 10
|
|
}
|
|
|
|
class SomeClass : SomeInterface {
|
|
override fun interfaceMethodA() = 20 // <== (1)
|
|
} |