mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 13:10:12 +03:00
11 lines
143 B
D
11 lines
143 B
D
// EXTRA_FILES: imports/test70.d
|
|
import imports.test70 : foo;
|
|
|
|
void foo(int) // overloads with selective import
|
|
{
|
|
}
|
|
|
|
void bar()
|
|
{
|
|
foo();
|
|
}
|