From 6af099c11a30f4bb82bdae3f171259d428119292 Mon Sep 17 00:00:00 2001 From: Georgy Bronnikov Date: Wed, 4 Mar 2020 14:42:04 +0300 Subject: [PATCH] Typo fix --- .../kotlin/cli/common/arguments/K2JVMCompilerArguments.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/cli/cli-common/src/org/jetbrains/kotlin/cli/common/arguments/K2JVMCompilerArguments.kt b/compiler/cli/cli-common/src/org/jetbrains/kotlin/cli/common/arguments/K2JVMCompilerArguments.kt index cabaffed89a..7c7b1412fec 100644 --- a/compiler/cli/cli-common/src/org/jetbrains/kotlin/cli/common/arguments/K2JVMCompilerArguments.kt +++ b/compiler/cli/cli-common/src/org/jetbrains/kotlin/cli/common/arguments/K2JVMCompilerArguments.kt @@ -321,7 +321,7 @@ class K2JVMCompilerArguments : CommonCompilerArguments() { valueDescription = "", description = "Paths to cross-platform libraries in .klib format" ) - val klibLibraries: String? by NullableStringFreezableVar(null) + var klibLibraries: String? by NullableStringFreezableVar(null) override fun configureAnalysisFlags(collector: MessageCollector): MutableMap, Any> { val result = super.configureAnalysisFlags(collector)