blob: e3f110d64ed8ee0ea9a82951c3ec39c798dd373e [file] [log] [blame]
Eli Friedmancca196b2008-02-21 18:07:36 +00001// RUN: clang -emit-llvm %s
2
3#include <stdint.h>
4
5// Brace-enclosed string array initializers
6char a[] = { "asdf" };
7
8// Double-implicit-conversions of array/functions (not legal C, but
9// clang accepts it for gcc compat).
10intptr_t b = a;
11int c();
12void *d = c;
13intptr_t e = c;