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