commit 853c8470dabce5986b7aa746f4489917ef19cb51 parent 39039ca1ed55c32fe7cd49eea16baebe52a9a38f Author: Roberto E. Vargas Caballero <k0ga@shike2.com> Date: Tue, 16 Nov 2021 21:26:36 +0100 tests/cc: Add 0195-unexpected.c Diffstat:
A | tests/cc/execute/0195-unexpected.c | | | 9 | +++++++++ |
M | tests/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