--- old/test/tools/javac/TryWithResources/TwrForVariable3.java 2015-10-19 06:34:51.131907721 +0300 +++ new/test/tools/javac/TryWithResources/TwrForVariable3.java 2015-10-19 06:34:51.059907719 +0300 @@ -7,9 +7,16 @@ public static void main(String... args) { TwrForVariable3 v1 = new TwrForVariable3(); Object v2 = new Object(); + Object v3 = new Object() { + public void close() { + } + }; try (v2) { - fail("no an AutoCloseable"); + fail("not an AutoCloseable"); + } + try (v3) { + fail("not an AutoCloseable although has close() method"); } try (java.lang.Object) { fail("not a variable access");