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 C(n: Int, b: Boolean)
expect class C(n: Int, b: Boolean)
fun test() {
C(1, false)
@@ -1,6 +1,6 @@
package test
impl class C(s: String) {
actual class C(s: String) {
constructor(n: Int, b: Boolean): this("")
}
@@ -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,6 +1,6 @@
package test
header class C(n: Int)
expect class C(n: Int)
fun test() {
C(1)
@@ -1,6 +1,6 @@
package test
impl class C(s: String) {
actual class C(s: String) {
constructor(n: Int): this("")
}
@@ -1,6 +1,6 @@
package test
impl class C<caret>(n: Int) {
actual class C<caret>(n: Int) {
constructor(s: String): this(1)
}