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,5 @@
// WITH_RUNTIME
// SHOULD_FAIL_WITH: package.call
fun main() {
kotlin.io.<caret>println("")
}