1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 14:44:58 +00:00
serenity/Userland/Libraries/LibCpp/Tests/parser/if-else.cpp

8 lines
90 B
C++

int foo()
{
if (2)
return 2;
if (1 < 2)
return 1;
return 0;
}