summaryrefslogtreecommitdiff
path: root/Tests/CompileFeatures/feature_test.cpp
blob: 4406c16e2c685ad83c19f97a10fcc4eb07fa70eb (plain)
1
2
3
4
5
6
7
8
9
10

#define STRINGIFY_IMPL(X) #X
#define STRINGIFY(X) STRINGIFY_IMPL(X)

#include STRINGIFY(TEST)

int main()
{
  return 0;
}