aboutsummaryrefslogtreecommitdiff
path: root/test cases/windows/17 msvc ndebug/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test cases/windows/17 msvc ndebug/main.cpp')
-rw-r--r--test cases/windows/17 msvc ndebug/main.cpp9
1 files changed, 9 insertions, 0 deletions
diff --git a/test cases/windows/17 msvc ndebug/main.cpp b/test cases/windows/17 msvc ndebug/main.cpp
new file mode 100644
index 0000000..d647d71
--- /dev/null
+++ b/test cases/windows/17 msvc ndebug/main.cpp
@@ -0,0 +1,9 @@
+int main() {
+#ifdef NDEBUG
+ // NDEBUG is defined
+ return 0;
+#else
+ // NDEBUG is not defined
+ return 1;
+#endif
+} \ No newline at end of file