Disable IgnoreNullabilityForErasedValueParameters for indefinite time, ^KT-53751 Fixed

This commit is contained in:
Ivan Kochurkin
2022-09-06 19:10:39 +02:00
committed by teamcity
parent a77933ca9a
commit 6c4dafc23c
20 changed files with 191 additions and 177 deletions
@@ -16,6 +16,6 @@ fun foo() {
concurrent.remove(null, null)
// @PurelyImplements
concurrentHash.remove(null, 1)
concurrentHash.remove(null, null)
concurrentHash.remove(<!NULL_FOR_NONNULL_TYPE!>null<!>, 1)
concurrentHash.remove(<!NULL_FOR_NONNULL_TYPE!>null<!>, <!NULL_FOR_NONNULL_TYPE!>null<!>)
}