From 7abcf3cec2ef69aa132211993c1f91da34f5dea2 Mon Sep 17 00:00:00 2001 From: Nikolay Krasko Date: Mon, 2 Jan 2017 23:37:14 +0300 Subject: [PATCH] Minor: suppress warnings --- .../tests/org/jetbrains/kotlin/util/ArgsToParamsMatchingTest.kt | 1 + 1 file changed, 1 insertion(+) diff --git a/compiler/tests/org/jetbrains/kotlin/util/ArgsToParamsMatchingTest.kt b/compiler/tests/org/jetbrains/kotlin/util/ArgsToParamsMatchingTest.kt index 1d82efdb687..6318df33018 100644 --- a/compiler/tests/org/jetbrains/kotlin/util/ArgsToParamsMatchingTest.kt +++ b/compiler/tests/org/jetbrains/kotlin/util/ArgsToParamsMatchingTest.kt @@ -83,4 +83,5 @@ private fun assertParamMapsEquals(actuals: Map?, vararg expect } } +@Suppress("UNUSED_PARAMETER") private fun foo(i: Int, b: Byte, c: Char, d: Double = 0.0, s: String = "", t: Boolean = true, vararg v: Long) {}