4d9b19da82
#KT-18539 Fixed
13 lines
294 B
Plaintext
Vendored
13 lines
294 B
Plaintext
Vendored
// "Add missing actual members" "true"
|
|
// DISABLE-ERRORS
|
|
|
|
actual class <caret>My {
|
|
actual fun foo(param: String) = 42
|
|
|
|
actual val correct = true
|
|
actual val x: String
|
|
get() = TODO("Not yet implemented")
|
|
actual val pi: Double
|
|
get() = TODO("Not yet implemented")
|
|
}
|