mirror of
https://github.com/llvm/llvm-project.git
synced 2025-04-25 18:16:04 +00:00
12 lines
195 B
C
12 lines
195 B
C
// RUN: %clang_cc1 -fsyntax-only -verify %s
|
|
// expected-no-diagnostics
|
|
|
|
int i;
|
|
int a[] = {0};
|
|
struct { int i; } s;
|
|
|
|
int *array[] = {&i, a, &s.i};
|
|
|
|
extern void f(void);
|
|
void (*f_addr)(void) = &f;
|