diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/pairUnify.ur | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/pairUnify.ur b/tests/pairUnify.ur new file mode 100644 index 00000000..1c9f9759 --- /dev/null +++ b/tests/pairUnify.ur @@ -0,0 +1,6 @@ +datatype a = A +datatype b = B + +val x : a * b = (A, B) + +val y : b = x |