6 lines
112 B
Plaintext
6 lines
112 B
Plaintext
// Parameter with type "void" illegal in function parameter list
|
|
|
|
void func(void x, void y) {
|
|
return x+y;
|
|
}
|