mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 15:53:37 +00:00
15 lines
279 B
Kotlin
Vendored
15 lines
279 B
Kotlin
Vendored
package test
|
|
|
|
public interface SubstitutedClassParameter {
|
|
|
|
public interface Super<T> {
|
|
public fun foo(t: T)
|
|
|
|
public fun dummy() // to avoid loading as SAM interface
|
|
}
|
|
|
|
public interface Sub: Super<String> {
|
|
override fun foo(t: String)
|
|
}
|
|
}
|