Fix assertions generation for substituted members

This commit is contained in:
Alexander Udalov
2013-02-04 22:40:54 +04:00
parent 4fa3909eaf
commit 8eb6047972
5 changed files with 69 additions and 1 deletions
@@ -0,0 +1,9 @@
import java.util.ArrayList
fun foo() {
val a = ArrayList<String>()
a.get(0)
}
fun bar(a: ArrayList<String>) {
}