6_9_duplicate_parameter.c (75B)
1 int f(int x, int x) { return x; } 2 3 int test_main(void) { return f(1, 2); }