From 10eef395f4d78cedffdb44c9d757aae56f887a8c Mon Sep 17 00:00:00 2001 From: Ilya Matveev Date: Tue, 14 Mar 2017 12:08:08 +0300 Subject: [PATCH] stdlib: Add empty kotlin.experimental package This patch adds empty kotlin.experimental package to avoid unresolved reference errors in bitwiseOp tests: external_codegen_box_binaryOp/bitwiseOp.kt external_codegen_box_binaryOp/bitwiseOpAny.kt external_codegen_box_binaryOp/bitwiseOpNullable.kt Byte/Short bitwise operations are supported in Kotlin Native by default. --- runtime/src/main/kotlin/kotlin/Experimental.kt | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 runtime/src/main/kotlin/kotlin/Experimental.kt diff --git a/runtime/src/main/kotlin/kotlin/Experimental.kt b/runtime/src/main/kotlin/kotlin/Experimental.kt new file mode 100644 index 00000000000..ba82125f1ab --- /dev/null +++ b/runtime/src/main/kotlin/kotlin/Experimental.kt @@ -0,0 +1,7 @@ +/** + * Empty package to avoid unresolved reference errors in bitwiseOp tests + * (e.g. external_codegen_box_binaryOp/bitwiseOp.kt). + * Byte/Short bitwise operations are supported in Kotlin Native by default. + */ + +package kotlin.experimental \ No newline at end of file