From dade6639b1b2d79ed111b929f75dc15c62c802dc Mon Sep 17 00:00:00 2001 From: John Camelon Date: Mon, 2 May 2005 22:48:36 +0000 Subject: [PATCH] Works for me. Test validation of 90647. --- .../org/eclipse/cdt/core/parser/tests/ast2/AST2CPPTests.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/ast2/AST2CPPTests.java b/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/ast2/AST2CPPTests.java index ddc6c00741b..a52755e794c 100644 --- a/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/ast2/AST2CPPTests.java +++ b/core/org.eclipse.cdt.core.tests/parser/org/eclipse/cdt/core/parser/tests/ast2/AST2CPPTests.java @@ -3830,5 +3830,9 @@ public class AST2CPPTests extends AST2BaseTest { IFunction f1 = (IFunction) col.getName(0).resolveBinding(); assertInstances( col, f1, 5 ); } + + public void testBug90647() throws Exception { + parse( "char msg[] = \"Syntax error on line %s\\n\";", ParserLanguage.CPP ); //$NON-NLS-1$ + } }