0037-pointer.c - scc - simple c99 compiler
(HTM) git clone git://git.simple-cc.org/scc
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) Submodules
(DIR) README
(DIR) 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 }