Minor. Merge multiplatformTypeRefinement testdata with multiplatform testdata
This commit is contained in:
@@ -0,0 +1,7 @@
|
||||
package sample
|
||||
|
||||
expect interface Input
|
||||
|
||||
abstract class AbstractInput : Input {
|
||||
val head: Int = null!!
|
||||
}
|
||||
@@ -0,0 +1,5 @@
|
||||
MODULE common { platform=[JVM, JS, Native] }
|
||||
|
||||
MODULE js { platform=[JS] }
|
||||
|
||||
js -> common { kind=DEPENDS_ON }
|
||||
@@ -0,0 +1,10 @@
|
||||
package sample
|
||||
|
||||
actual interface Input
|
||||
|
||||
class JSInput : AbstractInput()
|
||||
|
||||
// ------------------------------------
|
||||
|
||||
expect class ExpectInJsActualInJs
|
||||
actual class ExpectInJsActualInJs
|
||||
Reference in New Issue
Block a user