4coder-non-source/test_data/sample_files/parser_test3.cpp

13 lines
131 B
C++

/*
* THIS TESTS:
* - wrong number of arguments to macro
*/
#define NoArg() X
#define OneArg(a) (a + 1)
NoArg(5);
OneArg();