Migration: header->expect & impl->actual in IDEA test data
This commit is contained in:
+3
-3
@@ -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()
|
||||
|
||||
+3
-3
@@ -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()
|
||||
|
||||
+3
-3
@@ -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()
|
||||
|
||||
Reference in New Issue
Block a user