Tests for libcore change d2aa1365d25911076cb174a04b1d5152f0ff80e3

Test: make test-art-host
Bug: 31028374
Change-Id: Ic6e459d068f8ff2f7bd958bca9e7be433170381b
diff --git a/test/956-methodhandles/src/Main.java b/test/956-methodhandles/src/Main.java
index 801904d..fc9f030 100644
--- a/test/956-methodhandles/src/Main.java
+++ b/test/956-methodhandles/src/Main.java
@@ -676,6 +676,13 @@
             Integer.class, MethodType.methodType(Integer.class, Integer.class));
         fail("Unexpected success for non-void type for findConstructor");
     } catch (NoSuchMethodException e) {}
+
+    // Array class constructor.
+    try {
+        MethodHandle foo = MethodHandles.lookup().findConstructor(
+            Object[].class, MethodType.methodType(void.class));
+        fail("Unexpected success for array class type for findConstructor");
+    } catch (NoSuchMethodException e) {}
   }
 
   public static void testStringConstructors() throws Throwable {