Migration: header->expect & impl->actual in IDEA test data
This commit is contained in:
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
header class C(s: String) {
|
||||
expect class C(s: String) {
|
||||
constructor(n: Int, b: Boolean): this("")
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
impl class C(s: String) {
|
||||
actual class C(s: String) {
|
||||
constructor(n: Int, b: Boolean): this("")
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
impl class C(n: Int, b: Boolean) {
|
||||
actual class C(n: Int, b: Boolean) {
|
||||
constructor(s: String): this(1, false)
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
header class C(s: String) {
|
||||
expect class C(s: String) {
|
||||
constructor(n: Int): this("")
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
impl class C(s: String) {
|
||||
actual class C(s: String) {
|
||||
<caret>constructor(n: Int): this("")
|
||||
}
|
||||
|
||||
|
||||
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
impl class C(n: Int) {
|
||||
actual class C(n: Int) {
|
||||
constructor(s: String): this(1)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user