#include <iostream>


struct C {int i;};

void foo(C c={0})
{
    
}

int main()
{
    return 0;
}