Minor. Merge multiplatformTypeRefinement testdata with multiplatform testdata

This commit is contained in:
Dmitry Savvinov
2019-07-30 12:25:49 +03:00
parent 9f90486893
commit 79313037d1
80 changed files with 93 additions and 110 deletions
+2
View File
@@ -0,0 +1,2 @@
package foo
expect class A
+4
View File
@@ -0,0 +1,4 @@
package bar
import foo.A
fun baz(): A = null!!
+5
View File
@@ -0,0 +1,5 @@
package foo
actual class A {
fun foo() {}
}
+6
View File
@@ -0,0 +1,6 @@
package foobar
import bar.baz
fun main() {
baz().foo()
}
+8
View File
@@ -0,0 +1,8 @@
MODULE d1 { platform=[JVM, JS, Native]; root=d1 }
MODULE d2 { platform=[JVM, JS, Native]; root=d2 }
MODULE d3 { platform=[JVM]; root=d3 }
MODULE d4 { platform=[JVM]; root=d4 }
d2 -> d1 { kind=DEPENDS_ON }
d3 -> d2 { kind=DEPENDS_ON }
d4 -> d3 { kind=DEPENDS_ON }