1 // SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause)
4 * BTF-to-C dumper test for multi-dimensional array output.
6 * Copyright (c) 2019 Facebook
8 /* ----- START-EXPECTED-OUTPUT ----- */
11 typedef int multiarr_t
[3][4][5];
13 typedef int *ptr_arr_t
[6];
15 typedef int *ptr_multiarr_t
[7][8][9][10];
17 typedef int * (*fn_ptr_arr_t
[11])();
19 typedef int * (*fn_ptr_multiarr_t
[12][13])();
30 /* ------ END-EXPECTED-OUTPUT ------ */
32 int f(struct root_struct
*s
)