aboutsummaryrefslogtreecommitdiff
path: root/tests/hello_cxx11.cpp
blob: cfce039a0dc49643178a244bd68c6f141d821507 (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>

#if __cplusplus != 201103L
#error This file should be compiled with -std=c++11!
#endif

int main( int argc, const char *argv[] ) {
  printf("Hello world!\\n");
  return 0;
}