aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/test_implicit_return.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_implicit_return.sh')
-rw-r--r--tests/test_implicit_return.sh19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/test_implicit_return.sh b/tests/test_implicit_return.sh
deleted file mode 100644
index 423844e..0000000
--- a/tests/test_implicit_return.sh
+++ /dev/null
@@ -1,19 +0,0 @@
-# C99: 5.1.2.2.3
-test_exit_code 0 <<'EOF'
-int main() {
-}
-EOF
-
-test_exit_code 0 <<'EOF'
-int main() {
- 1 + 2 + 3;
-}
-EOF
-
-test_exit_code 0 <<'EOF'
-int main() {
- if (1);
- else return 1;
-}
-EOF
-