1
0
Fork 0
mirror of https://github.com/eclipse-cdt/cdt synced 2025-04-23 22:52:11 +02:00

Improved testStringConcatenationWithMacro test.

This commit is contained in:
Sergey Prigogin 2015-06-26 14:13:43 -07:00
parent 54f1facfbe
commit 28167f47fc

View file

@ -699,11 +699,12 @@ public class AST2Tests extends AST2TestBase {
}
}
// #define F(a) a
// #define _MACRO "macro"
// #define MACRO _MACRO
// void f(const char* s);
// void test() {
// f("aaa"MACRO);
// F(f("aaa"MACRO));
// }
public void testStringConcatenationWithMacro() throws Exception {
for (ParserLanguage lang : ParserLanguage.values()) {