thradams / cake

Cake a C23 front end and transpiler written in C
http://thradams.com/cake/index.html
GNU General Public License v3.0
533 stars 21 forks source link

missing warning - empty controlled statement found; is this the intent? #178

Closed thradams closed 2 weeks ago

thradams commented 6 months ago
int main() {
int i = 0;
if (i); // empty controlled statement found; is this the intent?
i++;
}