Wrong trace in call resolver fixed

This commit is contained in:
Andrey Breslav
2011-09-06 15:54:46 +04:00
parent d6336d9ca5
commit 67925fcda4
4 changed files with 32 additions and 25 deletions
@@ -0,0 +1,9 @@
open class Foo {}
open class Bar {}
fun <T : Bar, T1> foo(x : Int) {}
fun <T1, T : Foo> foo(x : Long) {}
fun f(): Unit {
foo<<error>Int</error>, Int>(1)
}