mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 00:21:32 +00:00
13 lines
311 B
Plaintext
Vendored
13 lines
311 B
Plaintext
Vendored
// "Add missing actual members" "true"
|
|
// DISABLE-ERRORS
|
|
|
|
actual class WithSecondaryConstructor {
|
|
fun bar(x: String) {}
|
|
|
|
val z: Double = 3.14
|
|
|
|
actual constructor(x: Int, s: String) {
|
|
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
}
|
|
}
|