// VERIFY_OPTS: -o simfail:malloc #include int main() { int *a = malloc( sizeof( int ) ); *a = 42; /* ERROR */ free( a ); }