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,8 +1,8 @@
package test
header fun foo()
header fun baz(n: Int)
header fun bar(n: Int)
expect fun foo()
expect fun baz(n: Int)
expect fun bar(n: Int)
fun test() {
foo()
@@ -1,8 +1,8 @@
package test
impl fun foo() { }
impl fun baz(n: Int) { }
impl fun bar(n: Int) { }
actual fun foo() { }
actual fun baz(n: Int) { }
actual fun bar(n: Int) { }
fun test() {
foo()
@@ -1,8 +1,8 @@
package test
impl fun foo() { }
impl fun baz(n: Int) { }
impl fun bar(n: Int) { }
actual fun foo() { }
actual fun baz(n: Int) { }
actual fun bar(n: Int) { }
fun test() {
foo()
@@ -1,8 +1,8 @@
package test
header fun foo()
header fun foo(n: Int)
header fun bar(n: Int)
expect fun foo()
expect fun foo(n: Int)
expect fun bar(n: Int)
fun test() {
foo()
@@ -1,8 +1,8 @@
package test
impl fun foo() { }
impl fun <caret>foo(n: Int) { }
impl fun bar(n: Int) { }
actual fun foo() { }
actual fun <caret>foo(n: Int) { }
actual fun bar(n: Int) { }
fun test() {
foo()
@@ -1,8 +1,8 @@
package test
impl fun foo() { }
impl fun foo(n: Int) { }
impl fun bar(n: Int) { }
actual fun foo() { }
actual fun foo(n: Int) { }
actual fun bar(n: Int) { }
fun test() {
foo()