blob: 1d1a740faac266ffe3670ae316e64cd1cfc01ccb [file] [log] [blame]
Eli Friedman922696f2008-05-19 17:51:16 +00001// RUN: clang -emit-llvm %s -o - | not grep "[5 x i8]"
2// 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