bug #872: Avoid deprecated binder1st/binder2nd usage by providing custom functors for comparison operators
diff --git a/test/array.cpp b/test/array.cpp
index cafcf79..1443f9f 100644
--- a/test/array.cpp
+++ b/test/array.cpp
@@ -136,6 +136,8 @@
     VERIFY(! (m1 < m3).all() );
     VERIFY(! (m1 > m3).all() );
   }
+  VERIFY(!(m1 > m2 && m1 < m2).any());
+  VERIFY((m1 <= m2 || m1 >= m2).all());
 
   // comparisons array to scalar
   VERIFY( (m1 != (m1(r,c)+1) ).any() );