diff --git a/idea/testData/quickfix/autoImports/ImportOperatorInvokeWithConvention.after.kt b/idea/testData/quickfix/autoImports/ImportOperatorInvokeWithConvention.after.kt
index 4bfe41ecb25..dc3f7b2fd54 100644
--- a/idea/testData/quickfix/autoImports/ImportOperatorInvokeWithConvention.after.kt
+++ b/idea/testData/quickfix/autoImports/ImportOperatorInvokeWithConvention.after.kt
@@ -9,4 +9,5 @@ import another.topVal
fun use() {
topVal()
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/ImportOperatorInvokeWithConvention.before.Main.kt b/idea/testData/quickfix/autoImports/ImportOperatorInvokeWithConvention.before.Main.kt
index 0bf6613e0ff..7012d2e75a0 100644
--- a/idea/testData/quickfix/autoImports/ImportOperatorInvokeWithConvention.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/ImportOperatorInvokeWithConvention.before.Main.kt
@@ -8,4 +8,5 @@ import another.topVal
fun use() {
topVal()
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/ambiguousNamePreferFromJdk.after.kt b/idea/testData/quickfix/autoImports/ambiguousNamePreferFromJdk.after.kt
index a23aba8fc78..21b4b490e02 100644
--- a/idea/testData/quickfix/autoImports/ambiguousNamePreferFromJdk.after.kt
+++ b/idea/testData/quickfix/autoImports/ambiguousNamePreferFromJdk.after.kt
@@ -7,3 +7,5 @@ import java.util.Date
fun foo(d: Date) {
}
+
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/ambiguousNamePreferFromJdk.before.Main.kt b/idea/testData/quickfix/autoImports/ambiguousNamePreferFromJdk.before.Main.kt
index fa60d00165f..896f7b601f1 100644
--- a/idea/testData/quickfix/autoImports/ambiguousNamePreferFromJdk.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/ambiguousNamePreferFromJdk.before.Main.kt
@@ -6,3 +6,5 @@ import dependency.*
fun foo(d: Date) {
}
+
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/ambiguousNamePreferWithImportsFromPackage.after.kt b/idea/testData/quickfix/autoImports/ambiguousNamePreferWithImportsFromPackage.after.kt
index d9a3b5b64b1..78a82d885f0 100644
--- a/idea/testData/quickfix/autoImports/ambiguousNamePreferWithImportsFromPackage.after.kt
+++ b/idea/testData/quickfix/autoImports/ambiguousNamePreferWithImportsFromPackage.after.kt
@@ -6,3 +6,5 @@ import dependency2.YYY
fun foo(x: XXX) {
}
+
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/ambiguousNamePreferWithImportsFromPackage.before.Main.kt b/idea/testData/quickfix/autoImports/ambiguousNamePreferWithImportsFromPackage.before.Main.kt
index 2071d6cf555..076b1a07982 100644
--- a/idea/testData/quickfix/autoImports/ambiguousNamePreferWithImportsFromPackage.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/ambiguousNamePreferWithImportsFromPackage.before.Main.kt
@@ -5,3 +5,5 @@ import dependency2.YYY
fun foo(x: XXX) {
}
+
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/callWithTrailingComma.after.kt b/idea/testData/quickfix/autoImports/callWithTrailingComma.after.kt
index 2b6169a3de7..aab7fab576c 100644
--- a/idea/testData/quickfix/autoImports/callWithTrailingComma.after.kt
+++ b/idea/testData/quickfix/autoImports/callWithTrailingComma.after.kt
@@ -17,3 +17,5 @@ class X {
foo(p, )
}
}
+
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/callWithTrailingComma.before.Main.kt b/idea/testData/quickfix/autoImports/callWithTrailingComma.before.Main.kt
index 35ba5d46af3..e520c1d2c50 100644
--- a/idea/testData/quickfix/autoImports/callWithTrailingComma.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/callWithTrailingComma.before.Main.kt
@@ -15,3 +15,5 @@ class X {
foo(p, )
}
}
+
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/callableReferenceExtension.after.kt b/idea/testData/quickfix/autoImports/callableReferenceExtension.after.kt
index d88b2250511..d1c8fc867a3 100644
--- a/idea/testData/quickfix/autoImports/callableReferenceExtension.after.kt
+++ b/idea/testData/quickfix/autoImports/callableReferenceExtension.after.kt
@@ -3,3 +3,5 @@ import dependency.extensionFun
// "Import" "true"
// ERROR: Unresolved reference: extensionFun
val v = String::extensionFun
+
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/callableReferenceExtension.before.Main.kt b/idea/testData/quickfix/autoImports/callableReferenceExtension.before.Main.kt
index ce7d8bc5443..7e362351a91 100644
--- a/idea/testData/quickfix/autoImports/callableReferenceExtension.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/callableReferenceExtension.before.Main.kt
@@ -1,3 +1,5 @@
// "Import" "true"
// ERROR: Unresolved reference: extensionFun
val v = String::extensionFun
+
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/callableReferenceExtension2.after.kt b/idea/testData/quickfix/autoImports/callableReferenceExtension2.after.kt
index f0118de9cb9..c3fa46ca498 100644
--- a/idea/testData/quickfix/autoImports/callableReferenceExtension2.after.kt
+++ b/idea/testData/quickfix/autoImports/callableReferenceExtension2.after.kt
@@ -3,3 +3,5 @@ import dependency.extensionFun
// "Import" "true"
// ERROR: Unresolved reference: extensionFun
val v = "a"::extensionFun
+
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/callableReferenceExtension2.before.Main.kt b/idea/testData/quickfix/autoImports/callableReferenceExtension2.before.Main.kt
index c1d29334b5f..8a9552e8167 100644
--- a/idea/testData/quickfix/autoImports/callableReferenceExtension2.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/callableReferenceExtension2.before.Main.kt
@@ -1,3 +1,5 @@
// "Import" "true"
// ERROR: Unresolved reference: extensionFun
val v = "a"::extensionFun
+
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/callableReferenceTopLevel.after.kt b/idea/testData/quickfix/autoImports/callableReferenceTopLevel.after.kt
index b0fe30716d0..9db44107a56 100644
--- a/idea/testData/quickfix/autoImports/callableReferenceTopLevel.after.kt
+++ b/idea/testData/quickfix/autoImports/callableReferenceTopLevel.after.kt
@@ -3,3 +3,5 @@ import dependency.topLevelFun
// "Import" "true"
// ERROR: Unresolved reference: topLevelFun
val v = ::topLevelFun
+
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/callableReferenceTopLevel.before.Main.kt b/idea/testData/quickfix/autoImports/callableReferenceTopLevel.before.Main.kt
index 0d2b6c371c4..df94ebe3226 100644
--- a/idea/testData/quickfix/autoImports/callableReferenceTopLevel.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/callableReferenceTopLevel.before.Main.kt
@@ -1,3 +1,5 @@
// "Import" "true"
// ERROR: Unresolved reference: topLevelFun
val v = ::topLevelFun
+
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/constructorReference.after.kt b/idea/testData/quickfix/autoImports/constructorReference.after.kt
index f7ed694c722..304e71cf672 100644
--- a/idea/testData/quickfix/autoImports/constructorReference.after.kt
+++ b/idea/testData/quickfix/autoImports/constructorReference.after.kt
@@ -7,4 +7,5 @@ import p2.receiveSomeCtor
fun a() {
receiveSomeCtor(::Some)
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/constructorReference.before.Main.kt b/idea/testData/quickfix/autoImports/constructorReference.before.Main.kt
index 2179de50453..a35513b861d 100644
--- a/idea/testData/quickfix/autoImports/constructorReference.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/constructorReference.before.Main.kt
@@ -6,4 +6,5 @@ import p2.receiveSomeCtor
fun a() {
receiveSomeCtor(::Some)
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/divOperator.after.kt b/idea/testData/quickfix/autoImports/divOperator.after.kt
index 6a19712decf..f87861d8a6f 100644
--- a/idea/testData/quickfix/autoImports/divOperator.after.kt
+++ b/idea/testData/quickfix/autoImports/divOperator.after.kt
@@ -10,3 +10,5 @@ interface H
fun f(h: H) {
h / 3
}
+
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/divOperator.before.Main.kt b/idea/testData/quickfix/autoImports/divOperator.before.Main.kt
index 30caf7ff708..0b3ca5f8e65 100644
--- a/idea/testData/quickfix/autoImports/divOperator.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/divOperator.before.Main.kt
@@ -8,3 +8,5 @@ interface H
fun f(h: H) {
h / 3
}
+
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/dslMarkers.after.kt b/idea/testData/quickfix/autoImports/dslMarkers.after.kt
index ba01b4ed61e..428e3130da1 100644
--- a/idea/testData/quickfix/autoImports/dslMarkers.after.kt
+++ b/idea/testData/quickfix/autoImports/dslMarkers.after.kt
@@ -10,4 +10,5 @@ fun test() {
aaa()
}
}
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/dslMarkers.before.Main.kt b/idea/testData/quickfix/autoImports/dslMarkers.before.Main.kt
index 49ffc4be76f..84c9daef273 100644
--- a/idea/testData/quickfix/autoImports/dslMarkers.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/dslMarkers.before.Main.kt
@@ -8,4 +8,5 @@ fun test() {
aaa()
}
}
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/dslMarkersOnReceiver.after.kt b/idea/testData/quickfix/autoImports/dslMarkersOnReceiver.after.kt
index 7bf0d2d3eca..59c2b7a9502 100644
--- a/idea/testData/quickfix/autoImports/dslMarkersOnReceiver.after.kt
+++ b/idea/testData/quickfix/autoImports/dslMarkersOnReceiver.after.kt
@@ -11,4 +11,5 @@ fun test() {
aaa()
}
}
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/dslMarkersOnReceiver.before.Main.kt b/idea/testData/quickfix/autoImports/dslMarkersOnReceiver.before.Main.kt
index c7a6f6bc9cc..e4ef3d74c8e 100644
--- a/idea/testData/quickfix/autoImports/dslMarkersOnReceiver.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/dslMarkersOnReceiver.before.Main.kt
@@ -9,4 +9,5 @@ fun test() {
aaa()
}
}
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/extensionFunctionImport.after.kt b/idea/testData/quickfix/autoImports/extensionFunctionImport.after.kt
index dbc34985349..80ec50154f8 100644
--- a/idea/testData/quickfix/autoImports/extensionFunctionImport.after.kt
+++ b/idea/testData/quickfix/autoImports/extensionFunctionImport.after.kt
@@ -8,3 +8,5 @@ fun some() {
val str = ""
str.someFun()
}
+
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/extensionFunctionImport.before.Main.kt b/idea/testData/quickfix/autoImports/extensionFunctionImport.before.Main.kt
index 555da87889a..ea405bc739b 100644
--- a/idea/testData/quickfix/autoImports/extensionFunctionImport.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/extensionFunctionImport.before.Main.kt
@@ -6,3 +6,5 @@ fun some() {
val str = ""
str.someFun()
}
+
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/extensionPropertyImport.after.kt b/idea/testData/quickfix/autoImports/extensionPropertyImport.after.kt
index c7fde410685..bae6d309848 100644
--- a/idea/testData/quickfix/autoImports/extensionPropertyImport.after.kt
+++ b/idea/testData/quickfix/autoImports/extensionPropertyImport.after.kt
@@ -7,3 +7,5 @@ import test.data.someVal
fun some() {
"".someVal
}
+
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/extensionPropertyImport.before.Main.kt b/idea/testData/quickfix/autoImports/extensionPropertyImport.before.Main.kt
index 0bea059d8e3..9554ce3e687 100644
--- a/idea/testData/quickfix/autoImports/extensionPropertyImport.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/extensionPropertyImport.before.Main.kt
@@ -5,3 +5,5 @@ package test
fun some() {
"".someVal
}
+
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/extensionPropertyOnTypeAliasFromExpansion.after.kt b/idea/testData/quickfix/autoImports/extensionPropertyOnTypeAliasFromExpansion.after.kt
index 242e4693566..0b98e39b489 100644
--- a/idea/testData/quickfix/autoImports/extensionPropertyOnTypeAliasFromExpansion.after.kt
+++ b/idea/testData/quickfix/autoImports/extensionPropertyOnTypeAliasFromExpansion.after.kt
@@ -7,4 +7,5 @@ import dep.ext
fun use() {
val ta = A()
ta.ext
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/extensionPropertyOnTypeAliasFromExpansion.before.Main.kt b/idea/testData/quickfix/autoImports/extensionPropertyOnTypeAliasFromExpansion.before.Main.kt
index b45dd5bfb70..1b0306ce1aa 100644
--- a/idea/testData/quickfix/autoImports/extensionPropertyOnTypeAliasFromExpansion.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/extensionPropertyOnTypeAliasFromExpansion.before.Main.kt
@@ -6,4 +6,5 @@ import dep.A
fun use() {
val ta = A()
ta.ext
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/extensionPropertyOnTypeAliasFromOtherTypeAlias.after.kt b/idea/testData/quickfix/autoImports/extensionPropertyOnTypeAliasFromOtherTypeAlias.after.kt
index b96a78e29fc..af1cd73fabb 100644
--- a/idea/testData/quickfix/autoImports/extensionPropertyOnTypeAliasFromOtherTypeAlias.after.kt
+++ b/idea/testData/quickfix/autoImports/extensionPropertyOnTypeAliasFromOtherTypeAlias.after.kt
@@ -7,4 +7,5 @@ import dep.ext
fun use() {
val ta = TA1()
ta.ext
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/extensionPropertyOnTypeAliasFromOtherTypeAlias.before.Main.kt b/idea/testData/quickfix/autoImports/extensionPropertyOnTypeAliasFromOtherTypeAlias.before.Main.kt
index 1b24c4796dc..3ae351eee3a 100644
--- a/idea/testData/quickfix/autoImports/extensionPropertyOnTypeAliasFromOtherTypeAlias.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/extensionPropertyOnTypeAliasFromOtherTypeAlias.before.Main.kt
@@ -6,4 +6,5 @@ import dep.TA1
fun use() {
val ta = TA1()
ta.ext
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/importAliasClassAlreadyExists.after.kt b/idea/testData/quickfix/autoImports/importAliasClassAlreadyExists.after.kt
index e503f302639..a29847646c1 100644
--- a/idea/testData/quickfix/autoImports/importAliasClassAlreadyExists.after.kt
+++ b/idea/testData/quickfix/autoImports/importAliasClassAlreadyExists.after.kt
@@ -4,4 +4,5 @@
import editor.completion.apx.ImportedClass as Class2
fun context() {
val c: Class2
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/importAliasClassAlreadyExists.before.Main.kt b/idea/testData/quickfix/autoImports/importAliasClassAlreadyExists.before.Main.kt
index 481ef6948da..279b9012f14 100644
--- a/idea/testData/quickfix/autoImports/importAliasClassAlreadyExists.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/importAliasClassAlreadyExists.before.Main.kt
@@ -4,4 +4,5 @@
import editor.completion.apx.ImportedClass as Class2
fun context() {
val c: ImportedClass
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/importAliasClassAlreadyExistsCollision.after.kt b/idea/testData/quickfix/autoImports/importAliasClassAlreadyExistsCollision.after.kt
index 5064a567a00..0673ca354e0 100644
--- a/idea/testData/quickfix/autoImports/importAliasClassAlreadyExistsCollision.after.kt
+++ b/idea/testData/quickfix/autoImports/importAliasClassAlreadyExistsCollision.after.kt
@@ -5,4 +5,5 @@ import editor.completion.apx.ImportedClass as Class2
fun context() {
class Class2
val c: editor.completion.apx.ImportedClass
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/importAliasClassAlreadyExistsCollision.before.Main.kt b/idea/testData/quickfix/autoImports/importAliasClassAlreadyExistsCollision.before.Main.kt
index edf66f82bdc..afc9d828af3 100644
--- a/idea/testData/quickfix/autoImports/importAliasClassAlreadyExistsCollision.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/importAliasClassAlreadyExistsCollision.before.Main.kt
@@ -5,4 +5,5 @@ import editor.completion.apx.ImportedClass as Class2
fun context() {
class Class2
val c: ImportedClass
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/importAliasFunctionAlreadyExists.after.kt b/idea/testData/quickfix/autoImports/importAliasFunctionAlreadyExists.after.kt
index 610ec520e32..fdbdf1fe637 100644
--- a/idea/testData/quickfix/autoImports/importAliasFunctionAlreadyExists.after.kt
+++ b/idea/testData/quickfix/autoImports/importAliasFunctionAlreadyExists.after.kt
@@ -5,4 +5,5 @@ import editor.completion.apx.importedFunA as funA
fun context() {
val funA = 42
funA()
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/importAliasFunctionAlreadyExists.before.Main.kt b/idea/testData/quickfix/autoImports/importAliasFunctionAlreadyExists.before.Main.kt
index 50e579efde6..dcef786f581 100644
--- a/idea/testData/quickfix/autoImports/importAliasFunctionAlreadyExists.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/importAliasFunctionAlreadyExists.before.Main.kt
@@ -5,4 +5,5 @@ import editor.completion.apx.importedFunA as funA
fun context() {
val funA = 42
importedFunA()
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/importAliasFunctionAlreadyExistsCollision.after.kt b/idea/testData/quickfix/autoImports/importAliasFunctionAlreadyExistsCollision.after.kt
index e30b6b0302e..7e4cc8a1f36 100644
--- a/idea/testData/quickfix/autoImports/importAliasFunctionAlreadyExistsCollision.after.kt
+++ b/idea/testData/quickfix/autoImports/importAliasFunctionAlreadyExistsCollision.after.kt
@@ -5,4 +5,5 @@ import editor.completion.apx.importedFunA as funA
fun context() {
fun funA() {}
editor.completion.apx.importedFunA()
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/importAliasFunctionAlreadyExistsCollision.before.Main.kt b/idea/testData/quickfix/autoImports/importAliasFunctionAlreadyExistsCollision.before.Main.kt
index 8969df0cd88..2f9e47ee515 100644
--- a/idea/testData/quickfix/autoImports/importAliasFunctionAlreadyExistsCollision.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/importAliasFunctionAlreadyExistsCollision.before.Main.kt
@@ -5,4 +5,5 @@ import editor.completion.apx.importedFunA as funA
fun context() {
fun funA() {}
importedFunA()
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/importAliasPropertyAlreadyExists.after.kt b/idea/testData/quickfix/autoImports/importAliasPropertyAlreadyExists.after.kt
index 0e8d89c92d4..76d0a5eb28d 100644
--- a/idea/testData/quickfix/autoImports/importAliasPropertyAlreadyExists.after.kt
+++ b/idea/testData/quickfix/autoImports/importAliasPropertyAlreadyExists.after.kt
@@ -4,4 +4,5 @@
import editor.completion.apx.importedValA as valA
fun context() {
valA()
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/importAliasPropertyAlreadyExists.before.Main.kt b/idea/testData/quickfix/autoImports/importAliasPropertyAlreadyExists.before.Main.kt
index 4b5b7c046a6..4676b463646 100644
--- a/idea/testData/quickfix/autoImports/importAliasPropertyAlreadyExists.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/importAliasPropertyAlreadyExists.before.Main.kt
@@ -4,4 +4,5 @@
import editor.completion.apx.importedValA as valA
fun context() {
importedValA()
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/importGetValueExtensionForDelegateWithLambda.after.kt b/idea/testData/quickfix/autoImports/importGetValueExtensionForDelegateWithLambda.after.kt
index a3a5d597bfa..3a4a6c67f1f 100644
--- a/idea/testData/quickfix/autoImports/importGetValueExtensionForDelegateWithLambda.after.kt
+++ b/idea/testData/quickfix/autoImports/importGetValueExtensionForDelegateWithLambda.after.kt
@@ -7,4 +7,5 @@ package import
import base.MyDelegate
import base.getValue
-val myVal by MyDelegate { false }
\ No newline at end of file
+val myVal by MyDelegate { false }
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/importGetValueExtensionForDelegateWithLambda.before.Main.kt b/idea/testData/quickfix/autoImports/importGetValueExtensionForDelegateWithLambda.before.Main.kt
index c07bfb67abb..34dea3215b1 100644
--- a/idea/testData/quickfix/autoImports/importGetValueExtensionForDelegateWithLambda.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/importGetValueExtensionForDelegateWithLambda.before.Main.kt
@@ -6,4 +6,5 @@ package import
import base.MyDelegate
-val myVal by MyDelegate { false }
\ No newline at end of file
+val myVal by MyDelegate { false }
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/importNullableTraitWithGenerics.after.kt b/idea/testData/quickfix/autoImports/importNullableTraitWithGenerics.after.kt
index 6f8c4c27f85..8e05135b1e6 100644
--- a/idea/testData/quickfix/autoImports/importNullableTraitWithGenerics.after.kt
+++ b/idea/testData/quickfix/autoImports/importNullableTraitWithGenerics.after.kt
@@ -1,7 +1,6 @@
import importTrait.data.TestTrait
// "Import" "true"
-// FIR_IGNORE
// ERROR: Unresolved reference: TestTrait
fun test() {
diff --git a/idea/testData/quickfix/autoImports/importNullableTraitWithGenerics.before.Main.kt b/idea/testData/quickfix/autoImports/importNullableTraitWithGenerics.before.Main.kt
index 70070ee84b2..5abb45c916b 100644
--- a/idea/testData/quickfix/autoImports/importNullableTraitWithGenerics.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/importNullableTraitWithGenerics.before.Main.kt
@@ -1,5 +1,4 @@
// "Import" "true"
-// FIR_IGNORE
// ERROR: Unresolved reference: TestTrait
fun test() {
diff --git a/idea/testData/quickfix/autoImports/infixCall.after.kt b/idea/testData/quickfix/autoImports/infixCall.after.kt
index b27ccfab924..1404d317075 100644
--- a/idea/testData/quickfix/autoImports/infixCall.after.kt
+++ b/idea/testData/quickfix/autoImports/infixCall.after.kt
@@ -9,4 +9,5 @@ interface H
fun f(h: H) {
h foo h
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/infixCall.before.Main.kt b/idea/testData/quickfix/autoImports/infixCall.before.Main.kt
index 59d31c0e73e..4fb7b1490c0 100644
--- a/idea/testData/quickfix/autoImports/infixCall.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/infixCall.before.Main.kt
@@ -7,4 +7,5 @@ interface H
fun f(h: H) {
h foo h
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/iteratorOperator.after.kt b/idea/testData/quickfix/autoImports/iteratorOperator.after.kt
index 32f45647235..a46f46de6ed 100644
--- a/idea/testData/quickfix/autoImports/iteratorOperator.after.kt
+++ b/idea/testData/quickfix/autoImports/iteratorOperator.after.kt
@@ -9,4 +9,5 @@ import foo.iterator
fun foo(start: Foo, end: Foo) {
for (date in start..end) {}
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/iteratorOperator.before.Main.kt b/idea/testData/quickfix/autoImports/iteratorOperator.before.Main.kt
index 9811f65d504..d95efa3ea95 100644
--- a/idea/testData/quickfix/autoImports/iteratorOperator.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/iteratorOperator.before.Main.kt
@@ -8,4 +8,5 @@ import foo.Foo
fun foo(start: Foo, end: Foo) {
for (date in start..end) {}
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/minusOperator.after.kt b/idea/testData/quickfix/autoImports/minusOperator.after.kt
index 0688ab7a463..b3064ed4e0f 100644
--- a/idea/testData/quickfix/autoImports/minusOperator.after.kt
+++ b/idea/testData/quickfix/autoImports/minusOperator.after.kt
@@ -15,4 +15,5 @@ fun f(h: H?) {
fun String.minus(str: String) = ""
-fun String.minus(i: Integer) = ""
\ No newline at end of file
+fun String.minus(i: Integer) = ""
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/minusOperator.before.Main.kt b/idea/testData/quickfix/autoImports/minusOperator.before.Main.kt
index 8d8074ee1af..f7c49e4c3fe 100644
--- a/idea/testData/quickfix/autoImports/minusOperator.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/minusOperator.before.Main.kt
@@ -13,4 +13,5 @@ fun f(h: H?) {
fun String.minus(str: String) = ""
-fun String.minus(i: Integer) = ""
\ No newline at end of file
+fun String.minus(i: Integer) = ""
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/nestedClass.after.kt b/idea/testData/quickfix/autoImports/nestedClass.after.kt
index 90489aae7fe..65b9a48ba09 100644
--- a/idea/testData/quickfix/autoImports/nestedClass.after.kt
+++ b/idea/testData/quickfix/autoImports/nestedClass.after.kt
@@ -4,3 +4,5 @@ import test.Test
// ERROR: Unresolved reference: Nested
val a = Test.Nested
+
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/nestedClass.before.Main.kt b/idea/testData/quickfix/autoImports/nestedClass.before.Main.kt
index e4d6cfad927..9d5857d5c33 100644
--- a/idea/testData/quickfix/autoImports/nestedClass.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/nestedClass.before.Main.kt
@@ -2,3 +2,5 @@
// ERROR: Unresolved reference: Nested
val a = Nested
+
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/noImportForNestedInPrivate.after.kt b/idea/testData/quickfix/autoImports/noImportForNestedInPrivate.after.kt
index 4997959e41e..29c69c4711c 100644
--- a/idea/testData/quickfix/autoImports/noImportForNestedInPrivate.after.kt
+++ b/idea/testData/quickfix/autoImports/noImportForNestedInPrivate.after.kt
@@ -3,4 +3,5 @@
fun test() {
Nested
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/noImportForNestedInPrivate.before.Main.kt b/idea/testData/quickfix/autoImports/noImportForNestedInPrivate.before.Main.kt
index 49ba5f7ca86..20bb368809c 100644
--- a/idea/testData/quickfix/autoImports/noImportForNestedInPrivate.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/noImportForNestedInPrivate.before.Main.kt
@@ -8,4 +8,5 @@
fun test() {
Nested
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/noImportInQualifiedUserTypeNotFirst.after.kt b/idea/testData/quickfix/autoImports/noImportInQualifiedUserTypeNotFirst.after.kt
index 2622c46bac5..dbeb9a919af 100644
--- a/idea/testData/quickfix/autoImports/noImportInQualifiedUserTypeNotFirst.after.kt
+++ b/idea/testData/quickfix/autoImports/noImportInQualifiedUserTypeNotFirst.after.kt
@@ -3,4 +3,5 @@
package testing
-class Some: testing.SomeTest
\ No newline at end of file
+class Some: testing.SomeTest
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/noImportInQualifiedUserTypeNotFirst.before.Main.kt b/idea/testData/quickfix/autoImports/noImportInQualifiedUserTypeNotFirst.before.Main.kt
index f187016186a..ebf088a2dd1 100644
--- a/idea/testData/quickfix/autoImports/noImportInQualifiedUserTypeNotFirst.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/noImportInQualifiedUserTypeNotFirst.before.Main.kt
@@ -5,4 +5,5 @@
package testing
-class Some: testing.SomeTest
\ No newline at end of file
+class Some: testing.SomeTest
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/noImportsForClassInExcludedPackage.before.Main.kt b/idea/testData/quickfix/autoImports/noImportsForClassInExcludedPackage.before.Main.kt
index 603002ae7a5..af85ea7df9d 100644
--- a/idea/testData/quickfix/autoImports/noImportsForClassInExcludedPackage.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/noImportsForClassInExcludedPackage.before.Main.kt
@@ -6,4 +6,5 @@
// ACTION: Rename reference
// ERROR: Unresolved reference: SomeClass
-val x = SomeClass()
\ No newline at end of file
+val x = SomeClass()
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/noImportsForExcludedClass.before.Main.kt b/idea/testData/quickfix/autoImports/noImportsForExcludedClass.before.Main.kt
index 5389e3dba78..85327b2432a 100644
--- a/idea/testData/quickfix/autoImports/noImportsForExcludedClass.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/noImportsForExcludedClass.before.Main.kt
@@ -6,4 +6,5 @@
// ACTION: Rename reference
// ERROR: Unresolved reference: ExcludedClass
-val x = ExcludedClass()
\ No newline at end of file
+val x = ExcludedClass()
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/noImportsForFunctionInExcludedPackage.before.Main.kt b/idea/testData/quickfix/autoImports/noImportsForFunctionInExcludedPackage.before.Main.kt
index 688de4033ce..dc89b13e1f3 100644
--- a/idea/testData/quickfix/autoImports/noImportsForFunctionInExcludedPackage.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/noImportsForFunctionInExcludedPackage.before.Main.kt
@@ -5,4 +5,5 @@
// ACTION: Rename reference
// ERROR: Unresolved reference: someFunction
-val x = someFunction()
\ No newline at end of file
+val x = someFunction()
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/noneApplicableFromInstanceButExtension.after.kt b/idea/testData/quickfix/autoImports/noneApplicableFromInstanceButExtension.after.kt
index 03003b92fa4..c03413a18a3 100644
--- a/idea/testData/quickfix/autoImports/noneApplicableFromInstanceButExtension.after.kt
+++ b/idea/testData/quickfix/autoImports/noneApplicableFromInstanceButExtension.after.kt
@@ -7,4 +7,5 @@ fun useSite() {
val bar = Bar()
bar.buz("1", "2")
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/noneApplicableFromInstanceButExtension.before.Main.kt b/idea/testData/quickfix/autoImports/noneApplicableFromInstanceButExtension.before.Main.kt
index fd633c2e18d..7ba3f0b5845 100644
--- a/idea/testData/quickfix/autoImports/noneApplicableFromInstanceButExtension.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/noneApplicableFromInstanceButExtension.before.Main.kt
@@ -6,4 +6,5 @@ fun useSite() {
val bar = Bar()
bar.buz("1", "2")
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/plusOperator.after.kt b/idea/testData/quickfix/autoImports/plusOperator.after.kt
index 49dd3fdfb54..1ee02ee42b8 100644
--- a/idea/testData/quickfix/autoImports/plusOperator.after.kt
+++ b/idea/testData/quickfix/autoImports/plusOperator.after.kt
@@ -9,4 +9,5 @@ interface H
fun f(h: H?) {
h + "other"
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/plusOperator.before.Main.kt b/idea/testData/quickfix/autoImports/plusOperator.before.Main.kt
index 1928d2de5c9..2c01a207f17 100644
--- a/idea/testData/quickfix/autoImports/plusOperator.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/plusOperator.before.Main.kt
@@ -7,4 +7,5 @@ interface H
fun f(h: H?) {
h + "other"
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/postfixOperator.after.kt b/idea/testData/quickfix/autoImports/postfixOperator.after.kt
index 560bbd29450..d47a5620267 100644
--- a/idea/testData/quickfix/autoImports/postfixOperator.after.kt
+++ b/idea/testData/quickfix/autoImports/postfixOperator.after.kt
@@ -10,4 +10,5 @@ interface H
fun f(h: H?) {
var h1 = h
h1++
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/postfixOperator.before.Main.kt b/idea/testData/quickfix/autoImports/postfixOperator.before.Main.kt
index b0d3384014f..5ae2fc83b3e 100644
--- a/idea/testData/quickfix/autoImports/postfixOperator.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/postfixOperator.before.Main.kt
@@ -8,4 +8,5 @@ interface H
fun f(h: H?) {
var h1 = h
h1++
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/sameModuleImportPriority.after.kt b/idea/testData/quickfix/autoImports/sameModuleImportPriority.after.kt
index edf1a431468..73809ddd001 100644
--- a/idea/testData/quickfix/autoImports/sameModuleImportPriority.after.kt
+++ b/idea/testData/quickfix/autoImports/sameModuleImportPriority.after.kt
@@ -7,4 +7,5 @@ import some.Delegates
fun foo() {
val d = Delegates()
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/sameModuleImportPriority.before.Main.kt b/idea/testData/quickfix/autoImports/sameModuleImportPriority.before.Main.kt
index 2833bd45c59..8fdbe054532 100644
--- a/idea/testData/quickfix/autoImports/sameModuleImportPriority.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/sameModuleImportPriority.before.Main.kt
@@ -5,4 +5,5 @@ package testing
fun foo() {
val d = Delegates()
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/timesAssign.after.kt b/idea/testData/quickfix/autoImports/timesAssign.after.kt
index 641c1dd713a..208b0c187cc 100644
--- a/idea/testData/quickfix/autoImports/timesAssign.after.kt
+++ b/idea/testData/quickfix/autoImports/timesAssign.after.kt
@@ -10,3 +10,5 @@ interface H
fun f(h: H) {
h *= 3
}
+
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/timesAssign.before.Main.kt b/idea/testData/quickfix/autoImports/timesAssign.before.Main.kt
index 8cf5557ee21..991daf2bb5c 100644
--- a/idea/testData/quickfix/autoImports/timesAssign.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/timesAssign.before.Main.kt
@@ -8,3 +8,5 @@ interface H
fun f(h: H) {
h *= 3
}
+
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/typeAliasExtensionFunction.after.kt b/idea/testData/quickfix/autoImports/typeAliasExtensionFunction.after.kt
index 64ff8c76acc..ba11e960b17 100644
--- a/idea/testData/quickfix/autoImports/typeAliasExtensionFunction.after.kt
+++ b/idea/testData/quickfix/autoImports/typeAliasExtensionFunction.after.kt
@@ -7,4 +7,5 @@ import dep.ext
fun use() {
val ta = TA()
ta.ext()
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/typeAliasExtensionFunction.before.Main.kt b/idea/testData/quickfix/autoImports/typeAliasExtensionFunction.before.Main.kt
index b38b035e203..c6a00f400e3 100644
--- a/idea/testData/quickfix/autoImports/typeAliasExtensionFunction.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/typeAliasExtensionFunction.before.Main.kt
@@ -6,4 +6,5 @@ import dep.TA
fun use() {
val ta = TA()
ta.ext()
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/typeAliasExtensionFunctionInTypeAliasChain.after.kt b/idea/testData/quickfix/autoImports/typeAliasExtensionFunctionInTypeAliasChain.after.kt
index 1789f406f30..50f14b093bf 100644
--- a/idea/testData/quickfix/autoImports/typeAliasExtensionFunctionInTypeAliasChain.after.kt
+++ b/idea/testData/quickfix/autoImports/typeAliasExtensionFunctionInTypeAliasChain.after.kt
@@ -6,4 +6,5 @@ import dep.ext
fun use(taa: TTA) {
taa.ext()
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/typeAliasExtensionFunctionInTypeAliasChain.before.Main.kt b/idea/testData/quickfix/autoImports/typeAliasExtensionFunctionInTypeAliasChain.before.Main.kt
index df30f8a379a..5227aaa3114 100644
--- a/idea/testData/quickfix/autoImports/typeAliasExtensionFunctionInTypeAliasChain.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/typeAliasExtensionFunctionInTypeAliasChain.before.Main.kt
@@ -5,4 +5,5 @@ import dep.TTA
fun use(taa: TTA) {
taa.ext()
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/typeAliasExtensionProperty.after.kt b/idea/testData/quickfix/autoImports/typeAliasExtensionProperty.after.kt
index 996db3e88b3..5d926e6fae6 100644
--- a/idea/testData/quickfix/autoImports/typeAliasExtensionProperty.after.kt
+++ b/idea/testData/quickfix/autoImports/typeAliasExtensionProperty.after.kt
@@ -7,4 +7,5 @@ import dep.ext
fun use() {
val ta = TA()
ta.ext
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/typeAliasExtensionProperty.before.Main.kt b/idea/testData/quickfix/autoImports/typeAliasExtensionProperty.before.Main.kt
index 511eb439066..dda8def9e4b 100644
--- a/idea/testData/quickfix/autoImports/typeAliasExtensionProperty.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/typeAliasExtensionProperty.before.Main.kt
@@ -6,4 +6,5 @@ import dep.TA
fun use() {
val ta = TA()
ta.ext
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/typeAliasImport.after.kt b/idea/testData/quickfix/autoImports/typeAliasImport.after.kt
index c1868c121b1..108e60256c1 100644
--- a/idea/testData/quickfix/autoImports/typeAliasImport.after.kt
+++ b/idea/testData/quickfix/autoImports/typeAliasImport.after.kt
@@ -6,3 +6,5 @@ import dependency.TestAlias
fun test() {
val a = TestAlias
}
+
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/typeAliasImport.before.Main.kt b/idea/testData/quickfix/autoImports/typeAliasImport.before.Main.kt
index 34116ab4525..726f1bf7a98 100644
--- a/idea/testData/quickfix/autoImports/typeAliasImport.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/typeAliasImport.before.Main.kt
@@ -4,3 +4,5 @@
fun test() {
val a = TestAlias
}
+
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/unaryMinusOperator.after.kt b/idea/testData/quickfix/autoImports/unaryMinusOperator.after.kt
index 402228bd0f9..90877ad595f 100644
--- a/idea/testData/quickfix/autoImports/unaryMinusOperator.after.kt
+++ b/idea/testData/quickfix/autoImports/unaryMinusOperator.after.kt
@@ -9,4 +9,5 @@ interface H
fun f(h: H?) {
-h
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/unaryMinusOperator.before.Main.kt b/idea/testData/quickfix/autoImports/unaryMinusOperator.before.Main.kt
index b0b05cbb5c6..762c15ec8a7 100644
--- a/idea/testData/quickfix/autoImports/unaryMinusOperator.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/unaryMinusOperator.before.Main.kt
@@ -7,4 +7,5 @@ interface H
fun f(h: H?) {
-h
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/unaryPlusOperator.after.kt b/idea/testData/quickfix/autoImports/unaryPlusOperator.after.kt
index 5b6e6d689a7..b914a0f0022 100644
--- a/idea/testData/quickfix/autoImports/unaryPlusOperator.after.kt
+++ b/idea/testData/quickfix/autoImports/unaryPlusOperator.after.kt
@@ -13,4 +13,5 @@ fun f(h: H?) {
class A()
-operator fun A.unaryPlus(): Int = 3
\ No newline at end of file
+operator fun A.unaryPlus(): Int = 3
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/unaryPlusOperator.before.Main.kt b/idea/testData/quickfix/autoImports/unaryPlusOperator.before.Main.kt
index acbea171827..83f43172d48 100644
--- a/idea/testData/quickfix/autoImports/unaryPlusOperator.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/unaryPlusOperator.before.Main.kt
@@ -11,4 +11,5 @@ fun f(h: H?) {
class A()
-operator fun A.unaryPlus(): Int = 3
\ No newline at end of file
+operator fun A.unaryPlus(): Int = 3
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/withSmartCastQualifier.after.kt b/idea/testData/quickfix/autoImports/withSmartCastQualifier.after.kt
index 387a829bdf1..b318f078020 100644
--- a/idea/testData/quickfix/autoImports/withSmartCastQualifier.after.kt
+++ b/idea/testData/quickfix/autoImports/withSmartCastQualifier.after.kt
@@ -11,4 +11,5 @@ fun test(a: Any) {
if (a is B) {
a.foo()
}
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file
diff --git a/idea/testData/quickfix/autoImports/withSmartCastQualifier.before.Main.kt b/idea/testData/quickfix/autoImports/withSmartCastQualifier.before.Main.kt
index d95c4b6d14e..edb58a917ab 100644
--- a/idea/testData/quickfix/autoImports/withSmartCastQualifier.before.Main.kt
+++ b/idea/testData/quickfix/autoImports/withSmartCastQualifier.before.Main.kt
@@ -9,4 +9,5 @@ fun test(a: Any) {
if (a is B) {
a.foo()
}
-}
\ No newline at end of file
+}
+/* IGNORE_FIR */
\ No newline at end of file