~ controversial test data
diff --git a/compiler/testData/diagnostics/tests/inference/builderInference/kt49828.fir.kt b/compiler/testData/diagnostics/tests/inference/builderInference/kt49828.fir.kt
index 03c739c..eb085bd 100644
--- a/compiler/testData/diagnostics/tests/inference/builderInference/kt49828.fir.kt
+++ b/compiler/testData/diagnostics/tests/inference/builderInference/kt49828.fir.kt
@@ -82,7 +82,7 @@
         add("one")
 
         with (get(0)) {
-            bar()
+            <!NONE_APPLICABLE!>bar<!>()
         }
     }
     val list71 = buildList {
@@ -90,7 +90,7 @@
 
         with (get(0)) l1@ {
             with (listOf(1)) {
-                bar()
+                <!NONE_APPLICABLE!>bar<!>()
             }
         }
     }
@@ -99,7 +99,7 @@
 
         with (get(0)) {
             with (listOf(1)) {
-                bar()
+                <!NONE_APPLICABLE!>bar<!>()
             }
         }
     }
@@ -113,7 +113,7 @@
 
         with (get(0)) {
             with (Inv(this)) {
-                foo2()
+                <!NONE_APPLICABLE!>foo2<!>()
             }
         }
     }
@@ -122,7 +122,7 @@
 
         with (get(0)) {
             with (Inv(this)) {
-                bar()
+                <!NONE_APPLICABLE!>bar<!>()
             }
         }
     }
@@ -161,7 +161,7 @@
         add("one")
 
         with (get(0)) {
-            foo0003(0f, <!ARGUMENT_TYPE_MISMATCH!>this@l1.get(0)<!>)
+            <!NONE_APPLICABLE!>foo0003<!>(0f, this@l1.get(0))
         }
     }
 
@@ -211,7 +211,7 @@
             add("")
             with (get()) {
                 with (listOf(1)) {
-                    bar()
+                    <!NONE_APPLICABLE!>bar<!>()
                 }
             }
         },