ladybird/Userland/Libraries/LibCpp/Tests/parser/local-vars.cpp

8 lines
80 B
C++

int foo()
{
int x;
double y = 2;
double z = x + y;
return z;
}