blob: e0cdab3c3aae0014672e7b01efe5b41e66174cd5 [file] [log] [blame]
/* This test is meant to check that C++ exceptions do not crash
* when running on Eclair or older platform releases. It will
* always succeed on later versions of the platform!
*/
extern void foo();
int main(int argc, char** argv)
{
foo();
return 0;
}