summaryrefslogtreecommitdiffstats
path: root/Tests/Cuda/NotEnabled/main.cxx
blob: a644207a11a47d8f382b4606099b477689fe1765 (plain)
1
2
3
4
5
6
7
8
9

#include <type_traits>

int main(int argc, char** argv)
{
  // make sure we have c++11 enabled
  using returnv = std::integral_constant<int, 0>;
  return returnv::value;
}