From 2f01e5468f56129015fd9dd169a49061c29dc75a Mon Sep 17 00:00:00 2001 From: William S Fulton Date: Fri, 20 Jun 2014 20:12:10 +0100 Subject: [PATCH] Fix ancient merge error in 75d2abfddb6ed19857c5e1adbe27dd4f3565fce0 --- Examples/test-suite/java/special_variable_macros_runme.java | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Examples/test-suite/java/special_variable_macros_runme.java b/Examples/test-suite/java/special_variable_macros_runme.java index d0e9d224e..1cd50e96e 100644 --- a/Examples/test-suite/java/special_variable_macros_runme.java +++ b/Examples/test-suite/java/special_variable_macros_runme.java @@ -26,6 +26,8 @@ public class special_variable_macros_runme { throw new RuntimeException("test failed"); if (!special_variable_macros.testJim(name).equals("multiname num")) throw new RuntimeException("test failed"); + if (special_variable_macros.testJohn(new PairIntBool(10, false)) != 123) + throw new RuntimeException("test failed"); NewName newName = NewName.factory("factoryname"); name = newName.getStoredName(); }