fix first-time startup not being parameterized by startup window

This commit is contained in:
Ryan Fleury
2024-10-09 14:25:28 -07:00
parent 8e5ebc2d75
commit d0e0e35fb5
2 changed files with 20 additions and 2 deletions
+11
View File
@@ -401,6 +401,17 @@ type_coverage_eval_tests(void){
TestFunction *function = mule_get_module_function("dll_type_eval_tests");
function();
int abc = 0;
for(int i = 0; i < 1000; i += 1)
{
if(i == 500)
{
abc+= 1;
}
int a = i + abc;
int b = a*5;
}
int x = (int)(Anonymous_D);
}