permit multiline comments and strings in macros
[bpt/coccinelle.git] / tests / constx.res
CommitLineData
34e49164
C
1int main() {
2 foobar(12, 12);
3 foo(x);
4 foobar(CONSTANT, CONSTANT);
5 foobar('a', 'a');
6 foobar("string", "string");
7 foobar(1.0001, 1.0001);
8}