feature_test.cpp 123 B

12345678910
  1. #define STRINGIFY_IMPL(X) #X
  2. #define STRINGIFY(X) STRINGIFY_IMPL(X)
  3. #include STRINGIFY(TEST)
  4. int main()
  5. {
  6. return 0;
  7. }