aboutsummaryrefslogtreecommitdiff
path: root/tests/tests2/58_function_redefinition.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/tests2/58_function_redefinition.c')
-rw-r--r--tests/tests2/58_function_redefinition.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/tests2/58_function_redefinition.c b/tests/tests2/58_function_redefinition.c
new file mode 100644
index 0000000..33f16ee
--- /dev/null
+++ b/tests/tests2/58_function_redefinition.c
@@ -0,0 +1,9 @@
+int f(void)
+{
+ return 0;
+}
+
+int f(void)
+{
+ return 1;
+}