test285
auto test285 =
q{--- test285.vx
// Use of non-expanded variadic type
void print[Args...](Args data) {}
void run() {
print("Hello", ", ", "world!\n");
}
--- <error>
test285.vx:2:22: Error: Should be `Args... data`
test285.vx:4:8: Error: Cannot infer template parameters. Number of runtime arguments (3) does not match number of function parameters (1)
};
tests passing
functionsvariables