+compile time comparison test files

This commit is contained in:
anon
2024-12-10 20:28:30 +01:00
parent 1c46a7fa6c
commit 671e72abf1
3 changed files with 29 additions and 0 deletions

View File

@ -0,0 +1,11 @@
#include <stdio.h>
extern int i;
signed main() {
for (; i < 10; i++) {
puts("blaaablaaa");
}
return 0;
}