1 /* 2 TEST_OUTPUT: 3 --- 4 fail_compilation/fail332.d(14): Error: function fail332.foo (int _param_0, ...) is not callable using argument types () 5 --- 6 */ 7 8 import core.vararg; 9 foo(int,...)10 void foo(int, ...) {} 11 bar()12 void bar() 13 { 14 foo(); 15 } 16