blob: bc26cc4f959e64ad56ea183cc2cbde9b72d74fd6 [file] [log] [blame]
public final class Junk
{
public void sillyMethod()
{
String bar = "bar";
try
{
int i = 1;
String foo = "foo";
System.out.println("[" + bar + "|" + i + "|" + foo + "]");
//throw new Exception();
}
catch (Exception e)
{
int j = 2;
System.out.println("j = [" + j + "]");
}
}
}