summaryrefslogtreecommitdiffstats
path: root/Tests/CompileFeatures/feature_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Tests/CompileFeatures/feature_test.cpp')
-rw-r--r--Tests/CompileFeatures/feature_test.cpp10
1 files changed, 10 insertions, 0 deletions
diff --git a/Tests/CompileFeatures/feature_test.cpp b/Tests/CompileFeatures/feature_test.cpp
new file mode 100644
index 0000000..4406c16
--- /dev/null
+++ b/Tests/CompileFeatures/feature_test.cpp
@@ -0,0 +1,10 @@
+
+#define STRINGIFY_IMPL(X) #X
+#define STRINGIFY(X) STRINGIFY_IMPL(X)
+
+#include STRINGIFY(TEST)
+
+int main()
+{
+ return 0;
+}