From 425d111b6313276e33d29e20ed41f24a620a1d89 Mon Sep 17 00:00:00 2001 From: Alexander Gorshenev Date: Thu, 19 Oct 2017 21:19:02 +0300 Subject: [PATCH] Added default test library source. --- klib/src/testLibrary/kotlin/test_platform_lib.kt | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 klib/src/testLibrary/kotlin/test_platform_lib.kt diff --git a/klib/src/testLibrary/kotlin/test_platform_lib.kt b/klib/src/testLibrary/kotlin/test_platform_lib.kt new file mode 100644 index 00000000000..080bc2800d7 --- /dev/null +++ b/klib/src/testLibrary/kotlin/test_platform_lib.kt @@ -0,0 +1,9 @@ +package test.konan.platform + +fun produceMessage() { + println("""This is a side effect of a test library linked into the binary. +You should not be seing this. +""") +} + +val x: Unit = produceMessage()