d7795bb207
* Move testLibrary tasks from klib into backend.native/tests * Support konan.home property in them
10 lines
201 B
Kotlin
10 lines
201 B
Kotlin
package test.konan.platform
|
|
|
|
fun produceMessage() {
|
|
println("""This is a side effect of a test library linked into the binary.
|
|
You should not be seeing this.
|
|
""")
|
|
}
|
|
|
|
val x: Unit = produceMessage()
|