aboutsummaryrefslogtreecommitdiff
path: root/test cases/unit/115 genvslite/main.cpp
blob: ca250bdd604dcc84ccffbe25bd3ee22cada6cbe1 (plain)
1
2
3
4
5
6
7
8
9
10
#include<stdio.h>

int main() {
#ifdef NDEBUG
    printf("Non-debug\n");
#else
    printf("Debug\n");
#endif
    return 0;
}