Minor: merge HierarchicalExpectActualMatchingTests into MultiplatformHighlightingTests

This commit is contained in:
Dmitry Savvinov
2020-01-16 16:30:45 +03:00
parent 9eab75650c
commit 8fcd98639d
70 changed files with 75 additions and 109 deletions
@@ -0,0 +1,3 @@
package foo
actual fun foo<!ACTUAL_WITHOUT_EXPECT("Actual function 'foo'", " The following declaration is incompatible because number of value parameters is different: public expect fun foo(): Int ")!>(x: Int)<!>: Int = x
@@ -0,0 +1,6 @@
MODULE top { platform=[JVM, JS, Native] }
MODULE middle { platform=[JVM, JS] }
MODULE bottom { platform=[JVM] }
middle -> top { kind=DEPENDS_ON }
bottom -> middle { kind=DEPENDS_ON }
@@ -0,0 +1,3 @@
package foo
actual fun foo(): Int = 42
@@ -0,0 +1,3 @@
package foo
expect fun foo(): Int