1 import imports.test70 : foo;
2 
foo(int)3 void foo(int) // overloads with selective import
4 {
5 }
6 
bar()7 void bar()
8 {
9     foo();
10 }
11