mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-12 00:21:32 +00:00
13 lines
438 B
Plaintext
Vendored
13 lines
438 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 body of created functions use File | Settings | File Templates.
|
|
actual val pi: Double
|
|
get() = TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
}
|