#include<stdlib.h> int main() { int array[100]; return 0; }
Standard input is empty
prog.c: In function ‘main’:
prog.c:5:7: error: attempt to free a non-heap object ‘array’ [-Werror=free-nonheap-object]
free(array);
^
cc1: all warnings being treated as errors
Standard output is empty