Files
kotlin-fork/backend.native/tests/testLibrary/kotlin/test_platform_lib.kt
T
Ilya Matveev d7795bb207 tests: Support custom konan.home for platform lib tests
* Move testLibrary tasks from klib into backend.native/tests
 * Support konan.home property in them
2017-11-02 17:40:27 +03:00

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()