blob: c703c622ec721684348e0ff6318fb0c90c8474f3 [file] [log] [blame]
Argiris Kirtzidis73b524d2008-06-12 12:40:02 +00001// RUN: clang -emit-llvm %s -o - | not grep "[5 x i8]" &&
Eli Friedman48ec5622008-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