Files
CMake/Tests/HIP/EnableStandard/static.cxx
2021-06-07 19:25:33 +00:00

10 lines
179 B
C++

#include <type_traits>
using tt = std::true_type;
using ft = std::false_type;
int __host__ static_hip11_func(int x)
{
return x * x + std::integral_constant<int, 17>::value;
}