aboutsummaryrefslogtreecommitdiff
path: root/test/delombok/resource/after/CleanupPlain.java
blob: 35d51543d990be413d0357dc1d165188de842520 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
import java.io.*;
class CleanupPlain {
	void test() throws Exception {
		InputStream in = new FileInputStream("in");
		try {
			OutputStream out = new FileOutputStream("out");
			try {
				if (in.markSupported()) {
					out.flush();
				}
			} finally {
				out.close();
			}
		} finally {
			in.close();
		}
	}
}