3 int Func_arg_array(int array
[]) { return 1; }
4 void Func_arg_void(void) { return; }
5 void Func_arg_none(void) { return; }
6 void Func_varargs(...) { return; }
12 int Func(int a
, ...) { return 1; }
17 template <int N
=1, class ...T
>
18 void TemplateFunc(T
...Arg
) {
24 void Func(int a
, const long b
, volatile bool c
, ...) { return; }
28 void Func(char a
, int b
) {
34 static long StaticFunction(int a
)
40 inline void InlinedFunction(long a
) { return; }
42 extern void FunctionCall();
48 Func(1, 5, true, 10, 8);
52 TemplateFunc(10,11,88);