Home | History | Annotate | Download | only in tests
      1 #include <stdio.h>
      2 
      3 int main (int argc, char ** argv)
      4 {
      5   float det = 625.f;
      6 
      7   if (det < 1)
      8   {
      9     printf ("erm, what ?\n");
     10   }
     11   return 0;
     12 }
     13