From e31a39386ed181807c0953d6bd5dcd3d285c4908 Mon Sep 17 00:00:00 2001 From: Yan Zhulanow Date: Wed, 23 Nov 2016 17:17:15 +0300 Subject: [PATCH] Minor: Fix testDeprecatedJvmOverloads test (Kotlin runtime is not enabled by default now in bytecode listing tests) --- .../bytecodeListing/annotations/deprecatedJvmOverloads.kt | 2 ++ 1 file changed, 2 insertions(+) diff --git a/compiler/testData/codegen/bytecodeListing/annotations/deprecatedJvmOverloads.kt b/compiler/testData/codegen/bytecodeListing/annotations/deprecatedJvmOverloads.kt index 4f1e3679454..5f8714792ef 100644 --- a/compiler/testData/codegen/bytecodeListing/annotations/deprecatedJvmOverloads.kt +++ b/compiler/testData/codegen/bytecodeListing/annotations/deprecatedJvmOverloads.kt @@ -1,3 +1,5 @@ +// WITH_RUNTIME + class Foo { @JvmOverloads @Deprecated(message = "Foo") fun bar(x: String = "") { }