diff --git a/src/example-archive/c-testsuite/broken/error-crash/00009.err125.c b/src/example-archive/c-testsuite/broken/error-crash/00009.err125.c deleted file mode 100644 index 18f8fd2d..00000000 --- a/src/example-archive/c-testsuite/broken/error-crash/00009.err125.c +++ /dev/null @@ -1,16 +0,0 @@ -/* - Failure("todo") -*/ -// Cause: `/` and `%` operators - -int -main() -{ - int x; - - x = 1; - x = x * 10; - x = x / 2; - x = x % 3; - return x - 2; -}