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
@@ -1,6 +1,6 @@
package test
header class Foo()
expect class Foo()
fun test() {
Foo()
@@ -1,6 +1,6 @@
package test
impl class Foo() {
actual class Foo() {
val x = n + 1
constructor(s: String): this(0)
}
@@ -1,6 +1,6 @@
package test
impl class Foo(s: String) {
actual class Foo(s: String) {
constructor(): this("") {
val x = n + 1
}
@@ -1,6 +1,6 @@
package test
header class Foo(<caret>n: Int)
expect class Foo(<caret>n: Int)
fun test() {
Foo(1)
@@ -1,6 +1,6 @@
package test
impl class Foo(n: Int) {
actual class Foo(n: Int) {
val x = n + 1
constructor(s: String): this(0)
}
@@ -1,6 +1,6 @@
package test
impl class Foo(s: String) {
actual class Foo(s: String) {
constructor(n: Int): this("") {
val x = n + 1
}