• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 /*
2  * Copyright (c) 2021, Alliance for Open Media. All rights reserved.
3  *
4  * This source code is subject to the terms of the BSD 2 Clause License and
5  * the Alliance for Open Media Patent License 1.0. If the BSD 2 Clause License
6  * was not distributed with this source code in the LICENSE file, you can
7  * obtain it at www.aomedia.org/license/software. If the Alliance for Open
8  * Media Patent License 1.0 was not distributed with this source code in the
9  * PATENTS file, you can obtain it at www.aomedia.org/license/patent.
10  */
11 
12 typedef struct S1 {
13   int x;
14 } T1;
15 
parse_decl_node_2(void)16 int parse_decl_node_2(void) { int arr[3]; }
17 
parse_decl_node_3(void)18 int parse_decl_node_3(void) { int *a; }
19 
parse_decl_node_4(void)20 int parse_decl_node_4(void) { T1 t1[3]; }
21 
parse_decl_node_5(void)22 int parse_decl_node_5(void) { T1 *t2[3]; }
23 
parse_decl_node_6(void)24 int parse_decl_node_6(void) { T1 t3[3][3]; }
25 
main(void)26 int main(void) {
27   int a;
28   T1 t1;
29   struct S1 s1;
30   T1 *t2;
31 }
32