summaryrefslogtreecommitdiffstats
path: root/test/Sema/address-constant.c
blob: 69f2f79f6857c5b3a959a231e7ff800d48c268b1 (plain)
1
2
3
4
5
6
7
8
9
10
// RUN: clang-cc -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;
OpenPOWER on IntegriCloud