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 fun foo(s: String)
expect fun foo(s: String)
fun test() {
foo("1")
@@ -1,6 +1,6 @@
package test
impl fun foo(s: String) {
actual fun foo(s: String) {
n.size
}
@@ -1,6 +1,6 @@
package test
impl fun foo(s: String) {
actual fun foo(s: String) {
n.size
}
@@ -1,6 +1,6 @@
package test
header fun foo(s: String, vararg <caret>n: Int)
expect fun foo(s: String, vararg <caret>n: Int)
fun test() {
foo("1", 2, 3)
@@ -1,6 +1,6 @@
package test
impl fun foo(s: String, vararg n: Int) {
actual fun foo(s: String, vararg n: Int) {
n.size
}
@@ -1,6 +1,6 @@
package test
impl fun foo(s: String, vararg n: Int) {
actual fun foo(s: String, vararg n: Int) {
n.size
}