blob: 76d6e4149150aaeab5a3e8188e37f74d6e4808f7 (
plain)
1
2
3
4
5
6
7
8
9
10
|
/*
* Should result in
* #define X 1
* X
* since only # in the input stream marks beginning of preprocessor command
* and here we get it from macro expansion.
*/
#define A # define X 1
A
X
|