3612c2983e
This can fix a lot of issues related to inexact generation, in particular #KT-27093 Fixed
13 lines
454 B
Plaintext
Vendored
13 lines
454 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 implemented") //To change initializer of created properties use File | Settings | File Templates.
|
|
actual val pi: Double
|
|
get() = TODO("not implemented") //To change initializer of created properties use File | Settings | File Templates.
|
|
}
|