From d3e98bc4341bd1ffeffbdd63db9e15e875afcac1 Mon Sep 17 00:00:00 2001 From: Dmitriy Novozhilov Date: Mon, 25 Mar 2019 12:34:58 +0300 Subject: [PATCH] [NI] Update test data for diagnostic tests --- .../nullableTypes/nullAssertOnTypeWithNullableUpperBound.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/testData/diagnostics/tests/nullableTypes/nullAssertOnTypeWithNullableUpperBound.kt b/compiler/testData/diagnostics/tests/nullableTypes/nullAssertOnTypeWithNullableUpperBound.kt index f43cfd17581..d8c27d1374f 100644 --- a/compiler/testData/diagnostics/tests/nullableTypes/nullAssertOnTypeWithNullableUpperBound.kt +++ b/compiler/testData/diagnostics/tests/nullableTypes/nullAssertOnTypeWithNullableUpperBound.kt @@ -10,6 +10,6 @@ fun T.testThis(): String { if (this != null) { return this!!.toString() } - return this!!.toString() + return this!!.toString() }