Migration: header->expect & impl->actual in IDEA test data
This commit is contained in:
Vendored
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
header class Foo {
|
||||
expect class Foo {
|
||||
fun foo(n: Int)
|
||||
}
|
||||
|
||||
|
||||
Vendored
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
impl class Foo {
|
||||
actual class Foo {
|
||||
}
|
||||
|
||||
fun test(f: Foo) {
|
||||
|
||||
Vendored
+2
-2
@@ -1,7 +1,7 @@
|
||||
package test
|
||||
|
||||
impl class Foo {
|
||||
impl fun foo(n: Int) {
|
||||
actual class Foo {
|
||||
actual fun foo(n: Int) {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Vendored
+1
-1
@@ -1,6 +1,6 @@
|
||||
package test
|
||||
|
||||
header class Foo {
|
||||
expect class Foo {
|
||||
fun foo(n: Int)
|
||||
}
|
||||
|
||||
|
||||
Vendored
+2
-2
@@ -1,7 +1,7 @@
|
||||
package test
|
||||
|
||||
impl class Foo {
|
||||
impl fun <caret>foo(n: Int) {
|
||||
actual class Foo {
|
||||
actual fun <caret>foo(n: Int) {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Vendored
+2
-2
@@ -1,7 +1,7 @@
|
||||
package test
|
||||
|
||||
impl class Foo {
|
||||
impl fun foo(n: Int) {
|
||||
actual class Foo {
|
||||
actual fun foo(n: Int) {
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user