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