Migration to actual/expect: quick-fix CreateActualFix with tests
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
// "Create header class implementation for platform JVM" "true"
|
||||
// "Create actual class for platform JVM" "true"
|
||||
|
||||
header class <caret>WithNested {
|
||||
fun foo(): Int
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
// "Create header class implementation for platform JVM" "true"
|
||||
// "Create actual class for platform JVM" "true"
|
||||
|
||||
header class WithNested {
|
||||
fun foo(): Int
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
// WithNested: to be implemented
|
||||
impl class WithNested {
|
||||
actual class WithNested {
|
||||
|
||||
class Nested {
|
||||
fun bar()
|
||||
@@ -9,7 +9,7 @@ impl class WithNested {
|
||||
fun baz()
|
||||
}
|
||||
|
||||
impl fun foo(): Int {
|
||||
actual fun foo(): Int {
|
||||
TODO("not implemented") //To change body of created functions use File | Settings | File Templates.
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user