Minor. Merge multiplatformTypeRefinement testdata with multiplatform testdata
This commit is contained in:
@@ -0,0 +1,3 @@
|
||||
expect class E {
|
||||
fun commonMember()
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
MODULE common { platform=[JVM, JS, Native]; root=common }
|
||||
MODULE jvm { platform=[JVM]; root=jvm }
|
||||
MODULE main { platform=[JVM]; root=main }
|
||||
|
||||
jvm -> common { kind=DEPENDS_ON }
|
||||
main -> jvm { kind=DEPENDS_ON }
|
||||
@@ -0,0 +1,5 @@
|
||||
actual class E {
|
||||
actual fun commonMember() {}
|
||||
|
||||
fun platformMember() {}
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
fun E.test() {
|
||||
commonMember()
|
||||
platformMember()
|
||||
}
|
||||
Reference in New Issue
Block a user