Merge PR#471: Bug Fix: KT-4613

This commit is contained in:
Pavel V. Talanov
2014-05-22 15:24:22 +04:00
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("")
}
@@ -0,0 +1,9 @@
// WITH_RUNTIME
// IS_APPLICABLE: false
package demo
fun foo(str: String) = kotlin.io.println(str)
fun main() {
<caret>demo.foo("")
}