scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | 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 }