aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/blackbox/testdata/enableExceptions/main.cpp
blob: 1b99ea96d88d6265319a2d38fb8874b97257ffbf (plain)
1
2
3
4
5
6
7
8
#include <stdexcept>

int main() {
#ifdef FORCE_FAIL_VS
#error "Microsoft Visual C++ cannot disable exceptions at compile-time"
#endif
    throw std::runtime_error("failed");
}