aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/119.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/119.sh')
-rw-r--r--tests/119.sh13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/119.sh b/tests/119.sh
deleted file mode 100644
index be485cf..0000000
--- a/tests/119.sh
+++ /dev/null
@@ -1,13 +0,0 @@
-cat <<'EOF' > expected
-1,0
-1,1,1
-EOF
-test_diff <<'EOF'
-int printf(const char*, ...);
-
-int main() {
- bool b1 = true, b0 = false;
- printf("%d,%d\n", b1, b0);
- printf("%d,%d,%d\n", sizeof(b1), sizeof(b0), sizeof(bool));
-}
-EOF