blob: 213c58e71b3977d3d50cf387c3c4f860d9295bdf [file] [log] [blame]
package com.siyeh.igfixes.migration.try_finally_can_be_try_with_resources;
import java.io.*;
class Comments {
void m(OutputStream out) throws IOException {
try (InputStream in = new FileInputStream("filename")) {
} finally {
// stop
// now
out.close();
}
}
}