blob: 1fc20cd00e48ebecb84182102b8dc2f3e8b517df [file] [log] [blame]
#pragma GCC system_header
template <typename T>
int* g() { static char c; return reinterpret_cast<int*>(&c); }
template <typename T>
T* h() { static char c; return reinterpret_cast<T*>(&c); }