From d877b204077c80422666e2f89418cdda64f0720f Mon Sep 17 00:00:00 2001 From: Ganesh Viswanathan Date: Tue, 7 Apr 2020 20:24:04 -0500 Subject: ast2 fix issue 174 - UncheckedArray --- tests/include/tast2.h | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'tests/include') diff --git a/tests/include/tast2.h b/tests/include/tast2.h index 348e225..a819f5e 100644 --- a/tests/include/tast2.h +++ b/tests/include/tast2.h @@ -133,6 +133,16 @@ void int sqlite3_bind_blob(struct A1*, int, const void*, int n, void(*)(void*)); +// Issue #174 - type name[] => UncheckedArray[type] +int ucArrFunc1(int text[]); +int ucArrFunc2(int text[][5], int (*func)(int text[])); + +typedef int ucArrType1[][5]; +struct ucArrType2 { + float f1[5][5]; + int *f2[][5]; +}; + -- cgit v1.2.3