int[] result = (int[]) proxy.array(new long[] { 100L, -200L });
assertEquals("Failed base type conversion test ", -200, result[0]);
boolean worked = false;
try {
proxy.string("");
} catch (Support_Proxy_SubException e) {
worked = true;
} catch (Support_Proxy_ParentException e) { // is never thrown
}
assertTrue("Problem converting exception ", worked);