blob: 51b243a7748b2824e0a62b4a361583a4ca9cd672 [file] [log] [blame]
package com.siyeh.ipp.exceptions.splitTry;
import java.io.*;
public class Simple {
void foo(File file1, File file2) throws IOException {
try (FileInputStream in = new FileInputStream(file1)) {
try (FileOutputStream out = new FileOutputStream(file2)) {
}
}
}
}