Add failing test case.

This commit is contained in:
David Given 2019-02-14 23:19:11 +01:00
parent 44c8b53a2d
commit cf6041c57f

View file

@ -0,0 +1,16 @@
#include <stdio.h>
#include "test.h"
int doit(void)
{
char buf[128];
int i;
i++;
}
int main(int argc, char *argv[])
{
doit();
finished();
return 0;
}