Thursday, January 17, 2008

Return Finally

public int foo(int x)
{
int i;
try
{
i=5;
return i;
}
finally
{
i=x;
}
}


What does foo() return?