dmd/compiler/test/compilable/test70.d
2022-07-09 18:53:07 +02:00

11 lines
143 B
D

// EXTRA_FILES: imports/test70.d
import imports.test70 : foo;
void foo(int) // overloads with selective import
{
}
void bar()
{
foo();
}