diff --git a/build.xml b/build.xml
index 59be6336..3156c7ad 100644
--- a/build.xml
+++ b/build.xml
@@ -633,6 +633,9 @@
+
+
+
@@ -655,6 +658,13 @@
nowarn="true" source="1.6" target="1.6" debug="true" deprecation="false" encoding="${build.encoding}"/>
+
+
+
+
+
+
@@ -662,7 +672,7 @@
nowarn="true" source="1.8" target="1.8" debug="true" deprecation="false" encoding="${build.encoding}"/>
-
+
diff --git a/src/test/antunit/Java7MethodHandles.class b/src/test/antunit/Java7MethodHandles.class
new file mode 100644
index 00000000..bb770fdb
Binary files /dev/null and b/src/test/antunit/Java7MethodHandles.class differ
diff --git a/src/test/antunit/Java7MethodHandles.java b/src/test/antunit/Java7MethodHandles.java
new file mode 100644
index 00000000..df40bc87
--- /dev/null
+++ b/src/test/antunit/Java7MethodHandles.java
@@ -0,0 +1,30 @@
+/*
+ * (C) Copyright Uwe Schindler (Generics Policeman) and others.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+/* The binary class file is packaged together with the source distribution.
+ */
+
+import java.lang.invoke.MethodHandle;
+import java.lang.invoke.MethodHandles;
+import java.lang.invoke.MethodType;
+
+class Java7MethodHandles {
+ static void main(String... args) throws Throwable {
+ MethodHandle mh = MethodHandles.publicLookup().findVirtual(StringBuilder.class, "append",
+ MethodType.methodType(StringBuilder.class, int.class));
+ StringBuilder result = (StringBuilder) mh.invoke(new StringBuilder(), 1);
+ }
+}
diff --git a/src/test/antunit/TestJava7.xml b/src/test/antunit/TestJava7.xml
new file mode 100644
index 00000000..659c0e08
--- /dev/null
+++ b/src/test/antunit/TestJava7.xml
@@ -0,0 +1,34 @@
+
+
+
+
+
+
+
+
+
+
+
+
+ java.lang.invoke.MethodHandle#invoke(java.lang.Object[]) @ Forbidden signature polymorphic method
+
+
+
+
+
+
+