1 /*
2 REQUIRED_ARGS: -betterC
3 TEST_OUTPUT:
4 ---
5 fail_compilation/fail19911a.d(9): Error: function `fail19911a.fun` D-style variadic functions cannot be used with -betterC
6 ---
7 */
8 
fun(...)9 void fun(...)
10 {
11 }
12