blob: df4b911d8b4c37ca71ce8c542998b05fd020f60e [file] [log] [blame]
// RUN: test.sh -e -t %t %s
//
// TEST: free-009
// XFAIL: darwin,linux
//
// Description:
// Test invalid memory deallocations
//
#include <stdio.h>
#include <stdlib.h>
int
main (int argc, char ** argv) {
free (argv[0]);
return 0;
}