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