blob: 03f3706d69625e580aa13113eaa447cd1316d58d [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/fail332.d(14): Error: function fail332.foo (int _param_0, ...) is not callable using argument types ()
---
*/
import core.vararg;
void foo(int, ...) {}
void bar()
{
foo();
}