blob: d57c05a66a6a046b4c38fa98285230df5022118b (
plain)
1
2
3
4
5
6
7
8
9
10
|
#include <type_traits>
int main(int argc, char** argv)
{
// Verify that issue #17519 Setting CXX_STANDARD breaks CUDA_STANDARD
// selection via cxx_std_11 has been corrected
using returnv = std::integral_constant<int, 0>;
return returnv::value;
}
|