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