Test data updated

This commit is contained in:
Roman Shevchenko
2011-03-15 12:45:31 +01:00
parent 8e053a0217
commit 28fbd2d9ad
@@ -1,6 +1,6 @@
class C {
void m() throws Exception {
try (AutoCloseable r1 = null;AutoCloseable r3 = null) {
try (AutoCloseable r1 = null; AutoCloseable r3 = null) {
System.out.println(r1 + ", " + r1 + ", " + r3);
}
}