FIR: Fix capturing of flexible types

This commit is contained in:
Denis Zharkov
2020-01-29 15:30:17 +03:00
parent ac2b5beb4e
commit d28e1f156a
7 changed files with 29 additions and 9 deletions
+2 -2
View File
@@ -6,6 +6,6 @@ import java.util.stream.IntStream
fun main() {
val xs = IntStream.range(0, 10).mapToObj { it.toString() }
.<!INAPPLICABLE_CANDIDATE!>collect<!>(Collectors.toList())
.collect(Collectors.toList())
<!UNRESOLVED_REFERENCE!>xs[0]<!>
}
}