From 07f2e54d120e3f0cdb6dbf2c1030f436353da699 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Wed, 14 May 2003 23:34:17 +0000 Subject: [PATCH] New testcase 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 | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 test/C++Frontend/2003-05-14-initialize-string.c 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 index 00000000000..543b13c4b51 --- /dev/null +++ b/test/C++Frontend/2003-05-14-initialize-string.c @@ -0,0 +1,6 @@ + +int main() { + char title[] = "foo and stuff\n"; + printf("%s", title); + return 0; +} -- 2.34.1