Migration: header->expect & impl->actual in IDEA test data

This commit is contained in:
Mikhail Glukhikh
2017-09-15 12:04:30 +03:00
parent 32cc619f15
commit 6e41bbc2a7
430 changed files with 663 additions and 663 deletions
@@ -4,6 +4,6 @@
// ACTION: Move to companion object
// ACTION: Move to constructor
header class Foo {
expect class Foo {
val <caret>foo: Int
}
@@ -1,3 +1,3 @@
impl class Foo {
impl val foo = 1
actual class Foo {
actual val foo = 1
}
@@ -1,3 +1,3 @@
impl class Foo {
impl val foo get() = 2
actual class Foo {
actual val foo get() = 2
}