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