test284
auto test284 = 
q{--- test284.vx
	// Check for expand on incorrect template parameter
	void print[T, Args...](T... data) {}
	void run() {
		print("Hello", ", ", "world!\n");
	}
--- <error>
test284.vx:2:30: Error: Should be `Args... data`
test284.vx:2:30: Error: Cannot expand non-variadic template parameter T
};
  
		tests passing 
		functionsvariables