diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2025-01-09 15:42:09 +0200 |
|---|---|---|
| committer | Jussi Pakkanen <jpakkane@gmail.com> | 2025-01-09 16:52:16 +0200 |
| commit | 0279acbfe54a83fa110cf7587b480e8f38adc634 (patch) | |
| tree | 290cf8bf417be04b19a6b71c95b4cd61ddaea5e3 /test cases/unit/118 genvslite/main.cpp | |
| parent | 910db36e3851f384b4aa2bfb834af92f88b61d77 (diff) | |
| download | meson-0279acbfe54a83fa110cf7587b480e8f38adc634.tar.gz | |
Condensed directory names for release.
Diffstat (limited to 'test cases/unit/118 genvslite/main.cpp')
| -rw-r--r-- | test cases/unit/118 genvslite/main.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/test cases/unit/118 genvslite/main.cpp b/test cases/unit/118 genvslite/main.cpp new file mode 100644 index 000000000..ca250bdd6 --- /dev/null +++ b/test cases/unit/118 genvslite/main.cpp @@ -0,0 +1,10 @@ +#include<stdio.h> + +int main() { +#ifdef NDEBUG + printf("Non-debug\n"); +#else + printf("Debug\n"); +#endif + return 0; +} |
