396cfb3956
Before this commit it caused compiler crash. Unchecked cast warning to be done later. ^KT-59645
13 lines
490 B
Kotlin
13 lines
490 B
Kotlin
@file:OptIn(kotlinx.cinterop.ExperimentalForeignApi::class)
|
|
|
|
import a.*
|
|
import b.*
|
|
|
|
|
|
fun main() {
|
|
if (testStruct(produceStruct()) != "Struct") throw IllegalStateException()
|
|
if (testClass(produceClass()) != "Class") throw IllegalStateException()
|
|
if (testProtocol(produceProtocol()) != "Protocol") throw IllegalStateException()
|
|
if (testClass2(produceClass()) != "Class") throw IllegalStateException()
|
|
if (testProtocol2(produceProtocol()) != "Protocol") throw IllegalStateException()
|
|
} |