Files
codeql/cpp/ql/test/library-tests/templates/bug/ODASA-6115.cpp
2018-08-02 17:53:23 +01:00

16 lines
195 B
C++

template<typename X>
struct __is_integral_helper
{};
template<>
struct __is_integral_helper<char16_t>
{};
template<>
struct __is_integral_helper<unsigned short>
{};
int main() {
return 0;
}