aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests/025.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/025.sh')
-rw-r--r--tests/025.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/025.sh b/tests/025.sh
deleted file mode 100644
index 54fd905..0000000
--- a/tests/025.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-cat <<'EOF' > expected
-123
-EOF
-test_diff <<'EOF'
-int printf();
-
-void foo_bar(int hoge_piyo) {
- printf("%d\n", hoge_piyo);
-}
-
-int main() {
- foo_bar(123);
- return 0;
-}
-EOF