xref: /aosp_15_r20/external/clang/test/Index/Inputs/preamble_macro_template.h (revision 67e74705e28f6214e480b399dd47ea732279e315)
1 #define STATIC_CAST static_cast
2 
3 template<typename T>
foo(T * p)4 void foo(T *p) {
5   (void)STATIC_CAST<T*>(0);
6 }
7