1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-29 19:45:01 +02:00

Added a test for string concatenation with macro.

This commit is contained in:
Sergey Prigogin 2015-01-05 16:02:05 -08:00
parent 3637dd4923
commit 52f60a00ba

View file

@ -7845,6 +7845,15 @@ public class AST2CPPTests extends AST2TestBase {
checkDeclDef(declNames, defNames, cls.getMembers());
}
// #define MACRO "macro"
// void f(const char* s);
// void test() {
// f("aaa"MACRO);
// }
public void testStringConcatenationWithMacro() throws Exception {
parseAndCheckBindings();
}
// class X {
// struct S* m1;
// struct T;