From cbebf68dfc1e18c0477d20ea3b424ea2c97c8728 Mon Sep 17 00:00:00 2001 From: Adam Chlipala Date: Tue, 21 Oct 2008 09:52:52 -0400 Subject: Monoize eq_[bool|string] --- tests/eq.ur | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'tests/eq.ur') diff --git a/tests/eq.ur b/tests/eq.ur index 1a780a57..4f758e0f 100644 --- a/tests/eq.ur +++ b/tests/eq.ur @@ -1,4 +1,8 @@ fun main () : transaction page = return {txt _ (1 = 1)}, {txt _ (1 = 2)}
- {txt _ (1 <> 1)}, {txt _ (1 <> 2)} + {txt _ (1 <> 1)}, {txt _ (1 <> 2)}
+ {txt _ (True = True)}, {txt _ (True = False)}
+ {txt _ (True <> True)}, {txt _ (True <> False)}
+ {txt _ ("A" = "A")}, {txt _ ("A" = "B")}
+ {txt _ ("A" <> "A")}, {txt _ ("A" <> "B")}
-- cgit v1.2.3