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
@@ -0,0 +1,25 @@
@file:Suppress("UNUSED_PARAMETER")
package sample
actual interface C {
actual fun common_2_C()
fun jvm_C()
}
actual interface B : A {
actual fun common_1_B()
fun jvm_B()
}
typealias A_jvm_Alias = A
typealias B_jvm_Alias = B
typealias C_jvm_Alias = C
fun take_A_jvm(func: (A) -> Unit) {}
fun take_B_jvm(func: (B) -> Unit) {}
fun take_C_jvm(func: (C) -> Unit) {}
fun take_A_alias_jvm(func: (A_jvm_Alias) -> Unit) {}
fun take_B_alias_jvm(func: (B_jvm_Alias) -> Unit) {}
fun take_C_alias_jvm(func: (C_jvm_Alias) -> Unit) {}