summaryrefslogtreecommitdiffstats
path: root/test cases/windows/19 msvc cplusplus define/main.cpp
blob: bc0b1fdf2595555add2292bfaaa2f2eb9d96027c (plain)
1
2
3
4
5
6
7
int main() {
#if __cplusplus == 199711L
    return 1;
#else
    return 0;
#endif
}