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

13 lines
131 B
C++
Raw Normal View History

2023-09-30 01:17:40 +00:00
/*
* THIS TESTS:
* - wrong number of arguments to macro
*/
#define NoArg() X
#define OneArg(a) (a + 1)
NoArg(5);
OneArg();