Files
2013-05-07 18:50:43 +04:00

6 lines
128 B
Kotlin

package test
public open class Super {
public fun String.foo() = Unit.VALUE
public abstract fun String.bar(p: String)
}