12 lines
188 B
Kotlin
Vendored
12 lines
188 B
Kotlin
Vendored
import testData.libraries.*
|
|
|
|
fun foo() {
|
|
func("5")
|
|
func(5)
|
|
}
|
|
|
|
// extra.kt
|
|
//public fun <1>func(str : kotlin.String) {
|
|
// main.kt
|
|
//public fun <2>func(a : Int, b : String = "55") {
|