Sign in
cmake
/
cmake
/
76f08a107b344daff524974868ab30353bd9b255
/
.
/
Tests
/
Cuda
/
ConsumeCompileFeatures
/
static.cpp
blob: 565d52e1052ce9df2ab11fa634786507c6ba96de [
file
] [
log
] [
blame
]
#include
<type_traits>
int
static_cuda11_func
(
int
);
int
static_cxx11_func
(
int
x
)
{
return
static_cuda11_func
(
x
)
+
std
::
integral_constant
<
int
,
32
>::
value
;
}