[FE 1.0] Fix mistakes in error messages for resolution ambiguity with stub types

^KT-51022 Fixed
This commit is contained in:
Victor Petukhov
2022-01-28 13:14:27 +03:00
parent a54c9edaad
commit 78f4b9f1cd
6 changed files with 49 additions and 12 deletions
+8
View File
@@ -0,0 +1,8 @@
fun main() {
val list = buildList {
add("one")
add("two")
val secondParameter = get(1)
println(secondParameter)
}
}