mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
6 lines
128 B
Kotlin
6 lines
128 B
Kotlin
package test
|
|
|
|
public open class Super {
|
|
public fun String.foo() = Unit.VALUE
|
|
public abstract fun String.bar(p: String)
|
|
} |