[Tesdata fix] Fix test data for multiplatform highlighting test

Once refinement is introduced the behavior becomes correct
This commit is contained in:
Denis Zharkov
2019-05-07 16:29:12 +03:00
committed by Dmitry Savvinov
parent d744192e6f
commit 33a31fb688
2 changed files with 6 additions and 8 deletions
@@ -6,6 +6,6 @@ actual class A {
fun use() {
j2.Use.acceptA(j2.Use.returnA())
j2.Use.returnA().id2()
}
j1.Use.acceptA(j1.Use.returnA())
j1.Use.returnA().id1()
}
@@ -3,9 +3,7 @@ package c
import common.A
fun use(a: A) {
// errors happen when common module part appears before platform part in dependencies list
// this is incorrect behaviour but doesn't seem to lead to user facing bugs atm
a.<error>id1</error>()
a.id1()
val a2: A = j.Use.returnA()
a2.<error>id1</error>()
}
a2.id1()
}