4495766362
From-SVN: r23760
22 lines
222 B
C
22 lines
222 B
C
#include <stdio.h>
|
|
|
|
int bar ()
|
|
{
|
|
throw 100;
|
|
}
|
|
|
|
int main ()
|
|
{
|
|
int i = 0; // this gets deleted after flow analysis
|
|
try
|
|
{
|
|
i = bar ();
|
|
}
|
|
catch (...)
|
|
{
|
|
}
|
|
|
|
printf ("i = %d\n", i);
|
|
return i;
|
|
}
|