URI:
       0237-down.c - scc - simple c99 compiler
  HTML git clone git://git.simple-cc.org/scc
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
       0237-down.c (166B)
       ---
            1 /*
            2  * Regression test for incorrect typing in binary operations
            3  * in the qbe backend.
            4  */
            5 
            6 int
            7 main(void)
            8 {
            9         long long l = 1ll < 34;
           10 
           11         l = l + 1;
           12 
           13         return l == 1;
           14 }