aboutsummaryrefslogtreecommitdiff
path: root/test/lombok/resource/after/CleanupName.java
blob: 2699737255f374825fdcdf7b54f76549ff8369ed (plain)
1
2
3
4
5
6
7
8
9
10
class Cleanup {
	void test() throws Exception {
		Object o = "Hello World!";
		try {
			System.out.println(o);
		} finally {
			o.toString();
		}
	}
}