int foo( int bar )
{
    int bar = 0;
    return bar;
}

int main()
{
    return foo(1);
}
