blob: 836774953fcbcf3b3ede78fe01705292e78618f0 [file] [log] [blame]
int bogus(int a) {
if (a > 1)
try {
a = 1;
} finally {
}
else
a = 0;
return a;
}