From a37ec5a0628a9613175d2496a09f42eb637b3fc6 Mon Sep 17 00:00:00 2001 From: Ilya Chernikov Date: Mon, 27 Jan 2020 13:24:07 +0100 Subject: [PATCH] [minor] "fix" fir testdata for KT-32792 & KT-34857 --- compiler/testData/diagnostics/tests/kt34857.fir.kt | 2 +- compiler/testData/diagnostics/tests/regressions/kt32792.fir.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/compiler/testData/diagnostics/tests/kt34857.fir.kt b/compiler/testData/diagnostics/tests/kt34857.fir.kt index a71121f8a49..8dfdc63b29b 100644 --- a/compiler/testData/diagnostics/tests/kt34857.fir.kt +++ b/compiler/testData/diagnostics/tests/kt34857.fir.kt @@ -4,5 +4,5 @@ val Int.plusAssign: (Int) -> Unit get() = {} fun main() { - 1 += 2 + 1 += 2 } diff --git a/compiler/testData/diagnostics/tests/regressions/kt32792.fir.kt b/compiler/testData/diagnostics/tests/regressions/kt32792.fir.kt index a43473e753f..bac2704f7c3 100644 --- a/compiler/testData/diagnostics/tests/regressions/kt32792.fir.kt +++ b/compiler/testData/diagnostics/tests/regressions/kt32792.fir.kt @@ -5,6 +5,6 @@ inline fun tryLambdas(lamb : () -> T) : T{ } fun main() { tryLambdas { - return@tryLambdas + return@tryLambdas } } \ No newline at end of file