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