New testcase
authorChris Lattner <sabre@nondot.org>
Wed, 14 May 2003 23:34:17 +0000 (23:34 +0000)
committerChris Lattner <sabre@nondot.org>
Wed, 14 May 2003 23:34:17 +0000 (23:34 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@6222 91177308-0d34-0410-b5e6-96231b3b80d8

test/C++Frontend/2003-05-14-initialize-string.c [new file with mode: 0644]

diff --git a/test/C++Frontend/2003-05-14-initialize-string.c b/test/C++Frontend/2003-05-14-initialize-string.c
new file mode 100644 (file)
index 0000000..543b13c
--- /dev/null
@@ -0,0 +1,6 @@
+
+int main() {
+  char title[] = "foo and stuff\n";
+  printf("%s", title);
+  return 0;
+}