Native: fix interop_objc_tests after recent frontend change

b60056f11e raises a warning to an error,
fixing this error here.
This commit is contained in:
Svyatoslav Scherbina
2021-03-30 15:32:46 +00:00
committed by Space
parent bf2e83f64c
commit 107129679e
@@ -42,13 +42,13 @@ fun testStructWithNSObject() {
struct.dictionary = null
assertEquals(null, struct.dictionary)
struct.dictionary = mapOf("k1" to "v1", "k2" to "v2")
assertEquals(mapOf("k1" to "v1", "k2" to "v2"), struct.dictionary)
assertEquals(mapOf<Any?, String>("k1" to "v1", "k2" to "v2"), struct.dictionary)
struct.mutableArray = null
assertEquals(null, struct.mutableArray)
struct.mutableArray = mutableListOf(1, 2)
struct.mutableArray!! += 3
assertEquals(mutableListOf(1, 2, 3), struct.mutableArray)
assertEquals(mutableListOf<Any?>(1, 2, 3), struct.mutableArray)
// Check that subtyping via Nothing-returning functions does not break compiler.
assertFailsWith<NotImplementedError> {