summaryrefslogtreecommitdiffstats
path: root/Tests/CompileFeatures/feature_test.c
blob: 4147f1fbdcde66d3443ab2df5dca5ad05ff2c39a (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(void)
{
  return 0;
}