FIR IDE: Consolidate tests for AddExclExclFix in one directory.

I found these tests only _after_ the previous changes, so I needed to
merge and/or remove redundant tests.
This commit is contained in:
Mark Punzalan
2021-04-28 08:01:14 +00:00
committed by Ilya Kirillov
parent db82797f58
commit efa3bf9c69
23 changed files with 74 additions and 160 deletions
@@ -0,0 +1,9 @@
// "Add non-null asserted (!!) call" "true"
class Some {
operator fun iterator(): Iterator<Int> = null!!
}
fun foo() {
val test: Some? = Some()
for (i in test!!) { }
}