aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/regression/parsing.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/regression/parsing.c b/test/regression/parsing.c
index f8ba2a73..2d48687b 100644
--- a/test/regression/parsing.c
+++ b/test/regression/parsing.c
@@ -162,6 +162,23 @@ void (*krk(a, b, c))(int)
int hhh(int());
+int (testparen)(int T) {
+ return T;
+}
+
+int (testparen2(int T)) {
+ return T;
+}
+
+int ((testparen3)(int T)) {
+ return T;
+}
+
+int ((((((((((testparen10))))))))))(int T) {
+ return T;
+}
+
+
int main () {
f(g);
i();