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