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