xref: /aosp_15_r20/development/vndk/tools/header-checker/tests/integration/array/include/base.h (revision 90c8c64db3049935a07c6143d7fd006e26f8ecca)
1 struct Struct {
2   int array[0];
3 };
4 
5 extern "C" {
6 void StructMember(Struct &);
7 void Pointer(int[]);
8 void DoublePointer(int **);
9 void PointerToArray(int (*)[]);
10 void PointerTo2DArray(int (*)[][10]);
11 void Reference(int (&)[][1]);
12 void Element(int (*)[2]);
13 }
14