mirror of
https://github.com/autc04/Retro68.git
synced 2025-02-21 09:29:36 +00:00
26 lines
274 B
C++
26 lines
274 B
C++
#include <stdio.h>
|
|
#include "dl3header.h"
|
|
|
|
extern void f (void);
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
try
|
|
{
|
|
f();
|
|
}
|
|
catch (A a)
|
|
{
|
|
if (a.i == 42)
|
|
printf ("OK\n");
|
|
else
|
|
printf ("BAD1\n");
|
|
}
|
|
catch (...)
|
|
{
|
|
printf ("BAD2\n");
|
|
}
|
|
return 0;
|
|
}
|