mirror of
https://github.com/opnsense/src.git
synced 2026-02-28 04:10:49 -05:00
10 lines
168 B
C
10 lines
168 B
C
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
|
|
int i;
|
|
int a[] = {0};
|
|
struct { int i; } s;
|
|
|
|
int *array[] = {&i, a, &s.i};
|
|
|
|
extern void f(void);
|
|
void (*f_addr)(void) = &f;
|