mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-03-10 08:31:29 +00:00
13 lines
99 B
Kotlin
Vendored
13 lines
99 B
Kotlin
Vendored
// C
|
|
|
|
class C {
|
|
|
|
fun f(vararg i: Int) {
|
|
|
|
}
|
|
|
|
fun p(i: Int, vararg s: String) {
|
|
|
|
}
|
|
}
|