mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-10 15:53:46 +00:00
Add test for KT-23457 NOTE: fixes 'importClassInCommon' test Other test cases added to increase coverage #KT-23457 Fixed
9 lines
107 B
Plaintext
Vendored
9 lines
107 B
Plaintext
Vendored
// "Import" "true"
|
|
// ERROR: Unresolved reference: foo
|
|
package bar
|
|
|
|
import foo.foo
|
|
|
|
fun use() {
|
|
foo()
|
|
} |