Files
kotlin/compiler/testData/multiplatform/missingOverload/common.kt

10 lines
108 B
Kotlin
Vendored

expect class Foo {
fun f(s: String)
fun f(a: Any)
}
expect fun g(s: String)
expect fun g(a: Any)