aboutsummaryrefslogtreecommitdiff
path: root/testcases/decl_comp.c
diff options
context:
space:
mode:
authorTeddy <ted.sybil@gmail.com>2014-04-12 11:11:34 +0800
committerTeddy <ted.sybil@gmail.com>2014-04-12 11:11:34 +0800
commit0d835d0de3b7e71141997eac9cce237ce4bef6c7 (patch)
tree1b897ada4967b2baa8771ad1a74a2694bdcfc3dc /testcases/decl_comp.c
parentad4582dfc2bb0c50d6972881ed845a473c40ca71 (diff)
add testcases
Diffstat (limited to 'testcases/decl_comp.c')
-rw-r--r--testcases/decl_comp.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/testcases/decl_comp.c b/testcases/decl_comp.c
new file mode 100644
index 0000000..f1b8bd2
--- /dev/null
+++ b/testcases/decl_comp.c
@@ -0,0 +1,5 @@
+int f();
+int f(int a);
+int main() {
+ f(1, 2);
+}