Getting super methods correctly for inheritors of Collection, etc.

This commit is contained in:
Evgeny Gerashchenko
2012-12-10 21:33:43 +04:00
parent a93596ca5e
commit 34f9ae77ba
3 changed files with 34 additions and 22 deletions
@@ -0,0 +1,7 @@
import java.util.ArrayList
fun foo(p: <!PLATFORM_CLASS_MAPPED_TO_KOTLIN!>java.util.List<String><!>) {
p.iterator(); // forcing resolve of java.util.List.iterator()
ArrayList<String>().iterator(); // this provoked exception in SignaturesPropagationData
}