Fixed type checking recursive problem.

#KT-11995 Fixed
This commit is contained in:
Stanislav Erokhin
2016-05-19 15:49:40 +03:00
parent 1c8272d3f1
commit c4778bfe5a
9 changed files with 97 additions and 38 deletions
+9
View File
@@ -0,0 +1,9 @@
package foo
fun foo(a: Any) = foo(1)
fun foo(i: Int) = "foo(Int)"
fun main(args: Array<String>) {
println(foo(""))
}