scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

0037-pointer.c (98B)


      1 /*
      2 PATTERN:
      3 0037-pointer.c:11: error: incorrect type in return
      4 .
      5 */
      6 
      7 char *
      8 f()
      9 {
     10 	return 1, 0;
     11 }