diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/localInstance.ur | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/localInstance.ur b/tests/localInstance.ur new file mode 100644 index 00000000..81a65ddb --- /dev/null +++ b/tests/localInstance.ur @@ -0,0 +1,8 @@ +datatype foo = Bar + +val x = + let + val _ = mkShow (fn Bar => "Bar") + in + show Bar + end |