We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7353626 commit 16bd411Copy full SHA for 16bd411
core/commonTest/src/contract/list/ImmutableListTest.kt
@@ -25,7 +25,7 @@ class ImmutableListTest {
25
26
assertFailsWith<NoSuchElementException> { empty1.iterator().next() }
27
28
- compareLists(emptyList(), empty1)
+ compareLists(emptyList<Int>(), empty1)
29
30
}
31
core/commonTest/src/contract/set/ImmutableSetTest.kt
@@ -239,7 +239,7 @@ abstract class ImmutableSetTestBase {
239
assertEquals<Set<Any>>(setOf(), empty1)
240
assertTrue(empty1 === empty2)
241
242
- compareSets(emptySet(), empty1)
+ compareSets(emptySet<Int>(), empty1)
243
244
245
@Test fun ofElements() {
0 commit comments