summaryrefslogtreecommitdiff
path: root/Tests/Cuda/ConsumeCompileFeatures/static.cu
blob: 73e43a8657e386388025cadc5d1d28321b05fb4d (plain)
1
2
3
4
5
6
7
8
9

#include <type_traits>

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