1// Parameter with type "void" illegal in function parameter list
2
3void func(void x, void y) {
4    return x+y;
5}
6