Home
       0021-void.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
       ---
       0021-void.c (125B)
       ---
            1 /*
            2 PATTERN:
            3 0021-void.c:12: error: bad type conversion requested
            4 .
            5 */
            6 
            7 int
            8 main(void)
            9 {
           10         void f(void);
           11 
           12         return (int) f();
           13 }