New testcase, distilled from ed-0.2
[oota-llvm.git] / test / CFrontend / 2002-03-14-QuotesInStrConst.c
1 /* GCC was not escaping quotes in string constants correctly, so this would 
2  * get emitted:
3  *  %.LC1 = internal global [32 x sbyte] c"*** Word "%s" on line %d is not\00"
4  */
5
6 const char *Foo() {
7         return "*** Word \"%s\" on line %d is not";
8 }