xref: /minix3/external/bsd/llvm/dist/clang/test/Index/Inputs/preamble_macro_template.h (revision f4a2713ac843a11c696ec80c0a5e3e5d80b4d338)
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