auto ca{
  throw(runtime_error("error"))
}
catch(e) {
  caught|| true
  assert_equal("error", e.what())
}

assert_equal(true, caught)
