From 008a0df28f88f98e8388e953eba2a55f78a08663 Mon Sep 17 00:00:00 2001 From: "anastasiia.spaseeva" Date: Thu, 19 Mar 2020 14:46:09 +0300 Subject: [PATCH] =?UTF-8?q?[Spec=20tests]=20DEBUG=5FINFO=5FLEAKING=5FTHIS?= =?UTF-8?q?=20diagnostics=20type=20is=20changed=20from=20error=20to=C2=A0?= =?UTF-8?q?=20info?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../diagnostics/factories/DebugInfoDiagnosticFactory0.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/frontend/src/org/jetbrains/kotlin/checkers/diagnostics/factories/DebugInfoDiagnosticFactory0.kt b/compiler/frontend/src/org/jetbrains/kotlin/checkers/diagnostics/factories/DebugInfoDiagnosticFactory0.kt index 2fbb0d15494..f38c8ac706d 100644 --- a/compiler/frontend/src/org/jetbrains/kotlin/checkers/diagnostics/factories/DebugInfoDiagnosticFactory0.kt +++ b/compiler/frontend/src/org/jetbrains/kotlin/checkers/diagnostics/factories/DebugInfoDiagnosticFactory0.kt @@ -54,7 +54,7 @@ class DebugInfoDiagnosticFactory0 : DiagnosticFactory0, val IMPLICIT_RECEIVER_SMARTCAST = DebugInfoDiagnosticFactory0("IMPLICIT_RECEIVER_SMARTCAST", Severity.INFO) val CONSTANT = DebugInfoDiagnosticFactory0("CONSTANT", Severity.INFO) - val LEAKING_THIS = DebugInfoDiagnosticFactory0("LEAKING_THIS") + val LEAKING_THIS = DebugInfoDiagnosticFactory0("LEAKING_THIS", Severity.INFO) val IMPLICIT_EXHAUSTIVE = DebugInfoDiagnosticFactory0("IMPLICIT_EXHAUSTIVE", Severity.INFO) val ELEMENT_WITH_ERROR_TYPE = DebugInfoDiagnosticFactory0("ELEMENT_WITH_ERROR_TYPE")