blob: f3ad4c51ee870c6bfbe441ee30a04f584bb93ed2 [file] [log] [blame]
Argyrios Kyrtzidis874f6082008-06-12 12:44:52 +00001// RUN: clang -emit-llvm %s -o - | not grep -F "[5 x i8]" &&
Eli Friedman922696f2008-05-19 17:51:16 +00002// RUN: clang -emit-llvm %s -o - | not grep "store"
3
4void test(void) {
5 char a[10] = "asdf";
6 char b[10] = { "asdf" };
7}
8