fune/toolkit/crashreporter/test/ExceptionThrower.cpp
Mike Conley d488497c51 Bug 1337051 - Test that we crash properly when exceptions thrown by third-party libraries aren't caught. r=ted
MozReview-Commit-ID: AypoGVccNU9

--HG--
extra : rebase_source : 4adfd4a3c7ba1be93bdeaada50d9bea0cd71658b
2017-02-06 13:16:28 -05:00

6 lines
68 B
C++

#include "ExceptionThrower.h"
void ThrowException()
{
throw 1;
}