From 6bd65bba28fa5d42917f4d4c7fcea6d0adb1d230 Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Sun, 14 Dec 2003 00:17:22 +0000 Subject: [PATCH] Test typemaps are being found for templated classes git-svn-id: https://swig.svn.sourceforge.net/svnroot/swig/trunk/SWIG@5564 626c5289-ae23-0410-ae9c-e8d60b6d4f22 --- Examples/test-suite/java/java_typemaps_proxy_runme.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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."); } - } }