// FILE: foo.kt package foo fun f(l: List) {} // FILE: main.kt import foo.* fun f(l: List) {} fun test(l: List) { f(l) }