blob: 4e7356a5f3922d32a5f0547c0a69cf63d81ecb6a [file] [log] [blame]
// ERROR: Unresolved reference: a
// ERROR: Unresolved reference: a
// ERROR: Unresolved reference: a
package to
import a.a
fun f(i: a.a) {
// TODO References shortening doesn't work for package vs class conflicts under the new resolution rules.
// After importing 'a.a', expression 'a.a' is unresolved (since 'a' becomes a class).
// 'package' in expression syntax might be required to fix it properly.
a.a
a.a()
}