Fixed type checking recursive problem.
#KT-11995 Fixed
This commit is contained in:
@@ -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(""))
|
||||
}
|
||||
Reference in New Issue
Block a user