<!-- Thanks for filing a bindgen issue! We appreciate it :-) --> ### Input C/C++ Header ```C++ # define UL(x) x##UL # define A UL(4294967295) # define B 4294967295UL ``` ### Bindgen Invocation ``` $ bindgen input.h ``` ### Actual Result ``` /* automatically generated by rust-bindgen 0.59.1 */ pub const B: u32 = 4294967295; ``` ### Expected Results ``` /* automatically generated by rust-bindgen 0.59.1 */ pub const A: u32 = 4294967295; pub const B: u32 = 4294967295; ``` ### Ref - https://gcc.gnu.org/onlinedocs/cpp/Concatenation.html