Simplify testcase even more
[oota-llvm.git] / test / C++Frontend / 2003-05-14-initialize-string.c
1
2 int main() {
3   char title[] = "foo and stuff\n";
4   printf("%s", title);
5   return 0;
6 }