aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--tcctest.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/tcctest.c b/tcctest.c
index 494b4db..2b75916 100644
--- a/tcctest.c
+++ b/tcctest.c
@@ -1943,3 +1943,13 @@ void builtin_test(void)
printf("res = %d\n", __builtin_constant_p(&constant_p_var));
printf("res = %d\n", __builtin_constant_p(constant_p_var));
}
+
+
+void const_func(const int a)
+{
+}
+
+void const_warn_test(void)
+{
+ const_func(1);
+}