diff options
author | Alan Zimmerman <alan.zimm@gmail.com> | 2021-05-14 12:33:01 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-05-21 15:05:44 -0400 |
commit | 0da85d41ee6bc7f941cdbee8cebd5b57fa35396f (patch) | |
tree | 6dfb34ff0c0a46771defe0f65d9004eed9fd5cfd /testsuite/tests/printer/Test19839.hs | |
parent | 6eed426bf24fe4ddc4c4802ff44b949e74f9d7ee (diff) | |
download | haskell-0da85d41ee6bc7f941cdbee8cebd5b57fa35396f.tar.gz |
EPA: Fix explicit specificity and unicode linear arrow annotations
Closes #19839
Closes #19840
Diffstat (limited to 'testsuite/tests/printer/Test19839.hs')
-rw-r--r-- | testsuite/tests/printer/Test19839.hs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/testsuite/tests/printer/Test19839.hs b/testsuite/tests/printer/Test19839.hs new file mode 100644 index 0000000000..9cd48a0c52 --- /dev/null +++ b/testsuite/tests/printer/Test19839.hs @@ -0,0 +1,7 @@ +module Test19839 where + +minimal :: a ⊸ a +minimal x = x + +maximal :: a -> a +maximal x = x |