Home | History | Annotate | Download | only in src
      1 int main()
      2 {
      3     // Test coercing values when storing.
      4     float a = 0.002;
      5     double b = 0.1f;
      6     int c = 10.002;
      7     printf("%g %g %d\n", a, b, c);
      8     return 0;
      9 }
     10