diff --git a/Examples/test-suite/java/java_typemaps_proxy_runme.java b/Examples/test-suite/java/java_typemaps_proxy_runme.java index 25e22871a..bb33c752d 100644 --- a/Examples/test-suite/java/java_typemaps_proxy_runme.java +++ b/Examples/test-suite/java/java_typemaps_proxy_runme.java @@ -45,6 +45,9 @@ public class java_typemaps_proxy_runme { // Create a NULL pointer for Farewell using the constructor with changed modifiers Farewell nullFarewell = new Farewell(0, false); + // Test typemaps are being found for templated classes + AdieuIntPtrPtr.adieu(); + // Check the %javamethodmodifiers feature try { @@ -57,7 +60,6 @@ public class java_typemaps_proxy_runme { } catch (SecurityException s) { throw new RuntimeException("SecurityException caught. Test failed."); } - } }