summaryrefslogtreecommitdiff
path: root/TestPrograms/test_glibc.cpp
blob: 702ef8be1f760044ace19d30c4ae9a2de700f1e0 (plain)
1
2
3
4
5
6
7
8
#include <string>
int main(int argc, char* argv[])
{
#ifndef __GLIBCXX__
    int x[-1];
#endif
    return 0;
}