diff --git a/compiler/testData/diagnostics/tests/varargs/NullableTypeForVarargArgument.kt b/compiler/testData/diagnostics/tests/varargs/NullableTypeForVarargArgument.kt index 5e7c55d1075..dc44796bbce 100644 --- a/compiler/testData/diagnostics/tests/varargs/NullableTypeForVarargArgument.kt +++ b/compiler/testData/diagnostics/tests/varargs/NullableTypeForVarargArgument.kt @@ -62,4 +62,5 @@ fun k() { fun invokeTest(goodArgs: Array) { J.staticFun(*goodArgs) J.staticFun(*args) + J.staticFun(*args ?: null) } \ No newline at end of file