Skip to main content

This CGIT instance is deprecated, and repositories have been moved to Gitlab or Github. See the repository descriptions for specific locations.

summaryrefslogtreecommitdiffstats
blob: 9afecb67cd4f5d7040a66caa5448383fdd89e297 (plain) (blame)
1
2
3
4
5
6
void a() {
    if (true)
        System.out.println("a");
    else
        System.out.println("b");
}

Back to the top