4d9b19da82
#KT-18539 Fixed
10 lines
190 B
Plaintext
Vendored
10 lines
190 B
Plaintext
Vendored
// "Add missing actual members" "true"
|
|
// DISABLE-ERRORS
|
|
|
|
actual class My {
|
|
fun foo(param: String) = 42
|
|
actual fun foo(param: Int): Int {
|
|
TODO("Not yet implemented")
|
|
}
|
|
}
|