Implement inequality operator (use: != or <>)
[whenjobs.git] / tests / parsing / t020_simple.ml
index f7f0778..19ad3f9 100644 (file)
@@ -59,3 +59,13 @@ when false == true :
 <<
   # nothing
 >>
+
+when true != true :
+<<
+  # nothing
+>>
+
+when true <> (false || true) :
+<<
+  # nothing
+>>