b06b3ab4c4
#KT-4002 Fixed
9 lines
115 B
Kotlin
9 lines
115 B
Kotlin
trait Some {
|
|
fun f1()
|
|
fun f2()
|
|
}
|
|
|
|
abstract class Abstract() {
|
|
abstract fun f1()
|
|
abstract fun f2()
|
|
} |