1f08c3bdfSopenharmony_ciextern void f(void);
2f08c3bdfSopenharmony_ciextern int a[];
3f08c3bdfSopenharmony_ci
4f08c3bdfSopenharmony_ciint foo(void) { if (f) return 1; return 0; }
5f08c3bdfSopenharmony_ciint bar(void) { if (a) return 1; return 0; }
6f08c3bdfSopenharmony_ciint qux(void) { if (f && a) return 1; return 0; }
7f08c3bdfSopenharmony_ci
8f08c3bdfSopenharmony_ci/*
9f08c3bdfSopenharmony_ci * check-name: cond-address.c
10f08c3bdfSopenharmony_ci * check-command: test-linearize -Wno-decl $file
11f08c3bdfSopenharmony_ci * check-output-ignore
12f08c3bdfSopenharmony_ci *
13f08c3bdfSopenharmony_ci * check-output-excludes: VOID
14f08c3bdfSopenharmony_ci */
15