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,8 @@
actual class A
// Error: ACTUAL_WITHOUT_EXPECT, becuase we shouldn't see expects through usual dependencies
actual class <!ACTUAL_WITHOUT_EXPECT("Actual class 'B'", "")!>B<!>
// OK: though we can't actualize B, we can see it and use it.
fun useB(<!UNUSED_PARAMETER("b")!>b<!>: B) {
}