scc

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

commit 66d45bd97edc7c35b3b7e7dc7ef23f60c5d863ab
parent a0e34a8b86c340b8b3517c6dbdcde1de8c8ca39a
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Tue, 16 Nov 2021 21:26:36 +0100

tests/cc: Add 0195-unexpected.c

Diffstat:
Atests/cc/execute/0195-unexpected.c | 9+++++++++
Mtests/cc/execute/scc-tests.lst | 1+
2 files changed, 10 insertions(+), 0 deletions(-)

diff --git a/tests/cc/execute/0195-unexpected.c b/tests/cc/execute/0195-unexpected.c @@ -0,0 +1,9 @@ +int +main(void) +{ + int urmom = 1; + + urmom %= 69; + + return 0; +} diff --git a/tests/cc/execute/scc-tests.lst b/tests/cc/execute/scc-tests.lst @@ -185,3 +185,4 @@ 0192-ptrcmp.c 0193-incomplete.c 0194-vararg.c +0195-unexpected.c