Adjust test data for previously ignored tests

This commit is contained in:
Pavel V. Talanov
2018-04-19 20:34:05 +02:00
parent 5ddb7c71d1
commit 3949fc70c9
3 changed files with 9 additions and 4 deletions
@@ -1,3 +1,6 @@
// !CHECK_HIGHLIGHTING
package foo
expect class My {
fun foo(): Int
@@ -19,5 +22,4 @@ expect class His {
fun foo(): Int
fun bar(arg: Int): Boolean
}
@@ -1,13 +1,15 @@
package foo
actual class <error>My</error> {
actual fun foo() = 42
}
actual class Your {
actual class <error>Your</error> {
actual fun foo() = 13
<error>actual fun bar(arg: Int)</error> = arg
actual fun <error>bar</error>(arg: Int) = arg
}
@@ -1,3 +1,4 @@
// !CHECK_HIGHLIGHTING
package a
expect class A {
@@ -11,5 +12,5 @@ expect class B {
}
expect class C {
<error>header</error> inner class Inner
inner class Inner
}