aboutsummaryrefslogtreecommitdiff
path: root/lldb/test/API/tools/lldb-dap/exception/cpp/main.cpp
blob: 39d89b95319a8cd09b467cdd265cb1451672027b (plain)
1
2
3
4
5
6
#include <stdexcept>

int main(int argc, char const *argv[]) {
  throw std::invalid_argument("throwing exception for testing");
  return 0;
}