12 lines
266 B
C++
12 lines
266 B
C++
/* 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;
|
|
}
|