aboutsummaryrefslogtreecommitdiff
path: root/test/pretty/resource/after/TryWithResources.java
blob: 1a8b82e2a03311527548492c2a1e88012f95c3ff (plain)
1
2
3
4
5
6
7
8
9
//version 7:
import java.io.PrintWriter;
public class TryWithResources {
	{
		try (final PrintWriter pw = new PrintWriter(System.out);) {
			pw.println();
		}
	}
}