summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibCpp/Tests/if-else.cpp
blob: 91d0fe62feba1c92c42e030e6c47c7a4638fc307 (plain)
1
2
3
4
5
6
7
8
int foo()
{
    if (2)
        return 2;
    if (1 < 2)
        return 1;
    return 0;
}