diff options
author | Adam Chlipala <adam@chlipala.net> | 2012-04-21 14:06:03 -0400 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2012-04-21 14:06:03 -0400 |
commit | f87820a0554612aec1fc2965740febef3695b0bd (patch) | |
tree | 2100357cdeef6343ac689fdd9dc9543a56cb471d /tests | |
parent | 48bcb8af10e648f4b31ddf4b46e7700eb53d229c (diff) |
Add another rule to simplify record concatenations for pretty-printing
Diffstat (limited to 'tests')
-rw-r--r-- | tests/simplify.ur | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/simplify.ur b/tests/simplify.ur new file mode 100644 index 00000000..11e002eb --- /dev/null +++ b/tests/simplify.ur @@ -0,0 +1 @@ +fun main [r] (r : $([A = int] ++ ([B = float] ++ r))) : $([A = float] ++ ([B = int] ++ r)) = r |