cxx11.cpp 209 B

12345678910111213
  1. #if __cplusplus >= 201103L || (defined(_MSC_VER) && _MSC_VER >= 1600)
  2. // OK
  3. #else
  4. #error "C++11 is not supported"
  5. #endif
  6. static int test() { return 0; }
  7. int main()
  8. {
  9. auto res = test();
  10. return res;
  11. }