[Expect/Actual] Add testdata on hierarchical expect/actual matching

This commit is contained in:
Dmitry Savvinov
2019-04-23 20:59:07 +03:00
parent cac326bf4a
commit 54b8f9da28
70 changed files with 508 additions and 20 deletions
@@ -0,0 +1,3 @@
package sample
actual class A
@@ -0,0 +1,8 @@
MODULE top { platform=[JVM, JS, Native] }
MODULE left { platform=[JVM, JS, Native] }
MODULE right { platform=[JVM, JS, Native] }
MODULE bottom { platform=[JVM] }
left -> top { kind=DEPENDS_ON }
right -> top { kind=DEPENDS_ON }
bottom -> left, right { kind=DEPENDS_ON }
@@ -0,0 +1,3 @@
package sample
expect class A