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

13 lines
143 B
C++
Raw Normal View History

2018-03-16 18:19:11 +00:00
/*
* THIS TESTS:
* - wrong number of arguments to macro
*/
#define NoArg() X
#define OneArg(a) (a + 1)
NoArg(5);
OneArg();