blob: 1dce2263c5be21ff910e31fb5600ec05d7e3aaae [file] [log] [blame]
int f(int a,int, int c) {
return a + c;
}
int main() {
return f(1,2,3);
}