From 88b130308d6d6658b1e67a221cb92cf76beb7048 Mon Sep 17 00:00:00 2001 From: Mikhail Glukhikh Date: Thu, 4 Jun 2020 15:49:22 +0300 Subject: [PATCH] Revert accidental test data change introduced in 0d6e3093 --- .../when/noTypeArgumentsInConstructor.fir.kt | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/compiler/testData/diagnostics/testsWithStdLib/when/noTypeArgumentsInConstructor.fir.kt b/compiler/testData/diagnostics/testsWithStdLib/when/noTypeArgumentsInConstructor.fir.kt index b7212bcb280..1c01b530832 100644 --- a/compiler/testData/diagnostics/testsWithStdLib/when/noTypeArgumentsInConstructor.fir.kt +++ b/compiler/testData/diagnostics/testsWithStdLib/when/noTypeArgumentsInConstructor.fir.kt @@ -23,21 +23,21 @@ val test3: MutableList = } val test4: Collection = - listOf(1, 2, 3).flatMapTo(LinkedHashSet()) { - listOf(it) + listOf(1, 2, 3).flatMapTo(LinkedHashSet()) { + listOf(it) } val test5: Collection = - listOf(1, 2, 3).flatMapTo(LinkedHashSet()) { // TODO - if (true) listOf(it) else listOf(it) + listOf(1, 2, 3).flatMapTo(LinkedHashSet()) { // TODO + if (true) listOf(it) else listOf(it) } val test6: Collection = - listOf(1, 2, 3).flatMapTo(LinkedHashSet()) { - if (true) listOf(it) else listOf(it) + listOf(1, 2, 3).flatMapTo(LinkedHashSet()) { + if (true) listOf(it) else listOf(it) } val test7: Collection = - listOf(1, 2, 3).flatMapTo(LinkedHashSet()) { - select(listOf(it), listOf(it)) + listOf(1, 2, 3).flatMapTo(LinkedHashSet()) { + select(listOf(it), listOf(it)) } \ No newline at end of file