Home | History | Annotate | Download | only in tests
      1 
      2 #include <stdlib.h>
      3 
      4 int main ( void )
      5 {
      6   volatile int* a = malloc(1000);
      7   a[0] = 0;
      8   return a[0];
      9 }
     10