Bug Fix: KT-4613

Fix replace with infix function intention to be inapplicable in the
case of package function calls, such as “kotlin.io.println(“”).”
This commit is contained in:
Pradyoth Kukkapalli
2014-04-24 12:42:02 -04:00
parent 33fd82cf45
commit 65e670ef15
7 changed files with 88 additions and 12 deletions
@@ -0,0 +1,9 @@
// WITH_RUNTIME
// IS_APPLICABLE: false
package demo
fun foo(str: String) = kotlin.io.println(str)
fun main() {
<caret>demo.foo("")
}