mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-11 15:53:46 +00:00
10 lines
194 B
Kotlin
Vendored
10 lines
194 B
Kotlin
Vendored
package test.kotlin
|
|
|
|
interface A
|
|
|
|
@kotlin.jvm.JvmOverloads
|
|
public fun <T : A> foo(k: Class<T>, a: A, b: Boolean = false, s: String="hello"): List<T> {
|
|
println("$b $s")
|
|
return listOf()
|
|
}
|