mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 08:31:29 +00:00
When multiple expect declarations are in the same file, and some of them already have actual declarations for this platform, then "Create actual fix" put other declarations into the same file with existing actual declarations So #KT-17058 Fixed So #KT-21082 Fixed
6 lines
187 B
Plaintext
Vendored
6 lines
187 B
Plaintext
Vendored
// foo: to be implemented
|
|
|
|
actual fun bar() {}
|
|
actual fun foo(arg: Int): String {
|
|
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
|
} |