blob: 280fbca8642e768638156544af80fdfd0f5a34f0 [file] [log] [blame]
package trycatch_in;
import java.io.File;
public class TestWrappedLocal4 {
public void foo() {
File file= null;
/*]*/int i= 10, x= 20;
file.toURL();/*[*/
i= 20;
}
}