mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 00:21:32 +00:00
13 lines
194 B
Kotlin
13 lines
194 B
Kotlin
package test
|
|
|
|
public trait Super1 {
|
|
public fun String.foo()
|
|
public fun Array<String>.bar()
|
|
}
|
|
|
|
public trait Super2 {
|
|
public fun foo(p: String)
|
|
public fun bar(vararg p: String)
|
|
}
|
|
|