annotate tests/tupleError.ur @ 1720:30c0ca20bf59

Pretty-print tuple types using tuple syntax
author Adam Chlipala <adam@chlipala.net>
date Sat, 21 Apr 2012 15:09:02 -0400
parents
children
rev   line source
adam@1720 1 fun f (x : int * float) : string = x
adam@1720 2 fun g (x : int * float * bool) : string = x
adam@1720 3 fun h (x : {A : int, B : float, C : bool}) : string = x