diff options
Diffstat (limited to 'tests/tupleError.ur')
-rw-r--r-- | tests/tupleError.ur | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/tupleError.ur b/tests/tupleError.ur new file mode 100644 index 00000000..d9b21fff --- /dev/null +++ b/tests/tupleError.ur @@ -0,0 +1,3 @@ +fun f (x : int * float) : string = x +fun g (x : int * float * bool) : string = x +fun h (x : {A : int, B : float, C : bool}) : string = x |