DEBSOURCES
Skip Quicknav
sources / c2go / 0.26.11-3 / tests / code_quality / if.c
1234567891011121314151617
void if_1() { int a = 5; int b = 2; int c = 4; if ( a > b ) { return; } else if ( c <= a) { a = 0; } (void)(a); (void)(b); (void)(c); }