diff options
author | Ryan Scott <ryan.gl.scott@gmail.com> | 2020-08-26 09:23:54 -0400 |
---|---|---|
committer | Ryan Scott <ryan.gl.scott@gmail.com> | 2020-08-26 19:16:56 -0400 |
commit | 222a878875b0e093e82f81d6f83fa39ac42d53b5 (patch) | |
tree | 932914ea810561e8ae98f82d6fb5ade7a39a7e73 /testsuite/tests | |
parent | 8426a1364ba450fe48fc41a95b2ba76c8d1bb7c8 (diff) | |
download | haskell-wip/T18612.tar.gz |
Make {hsExpr,hsType,pat}NeedsParens aware of boxed 1-tupleswip/T18612
`hsExprNeedsParens`, `hsTypeNeedsParens`, and `patNeedsParens`
previously assumed that all uses of explicit tuples in the source
syntax never need to be parenthesized. This is true save for one
exception: boxed one-tuples, which use the `Solo` data type from
`GHC.Tuple` instead of special tuple syntax. This patch adds the
necessary logic to the three `*NeedsParens` functions to handle
`Solo` correctly.
Fixes #18612.
Diffstat (limited to 'testsuite/tests')
-rw-r--r-- | testsuite/tests/th/T18612.hs | 14 | ||||
-rw-r--r-- | testsuite/tests/th/T18612.stderr | 13 | ||||
-rw-r--r-- | testsuite/tests/th/all.T | 1 |
3 files changed, 28 insertions, 0 deletions
diff --git a/testsuite/tests/th/T18612.hs b/testsuite/tests/th/T18612.hs new file mode 100644 index 0000000000..ea7c007c51 --- /dev/null +++ b/testsuite/tests/th/T18612.hs @@ -0,0 +1,14 @@ +{-# LANGUAGE DataKinds #-} +{-# LANGUAGE TemplateHaskell #-} +{-# OPTIONS_GHC -ddump-splices #-} +module T18612 where + +import Data.Functor.Identity +import Data.Proxy +import Language.Haskell.TH + +f :: $(arrowT `appT` (conT ''Identity `appT` (tupleT 1 `appT` (tupleT 0))) + `appT` (conT ''Identity `appT` (tupleT 1 `appT` (tupleT 0)))) +f $(conP 'Identity [tupP [tupP []]]) = $(conE 'Identity `appE` tupE [tupE []]) + +type G = $(conT ''Proxy `appT` (promotedTupleT 1 `appT` (tupleT 0))) diff --git a/testsuite/tests/th/T18612.stderr b/testsuite/tests/th/T18612.stderr new file mode 100644 index 0000000000..25286ef671 --- /dev/null +++ b/testsuite/tests/th/T18612.stderr @@ -0,0 +1,13 @@ +T18612.hs:14:11-68: Splicing type + conT ''Proxy `appT` (promotedTupleT 1 `appT` (tupleT 0)) + ======> + Proxy ('Solo ()) +T18612.hs:(10,7)-(11,75): Splicing type + arrowT `appT` (conT ''Identity `appT` (tupleT 1 `appT` (tupleT 0))) + `appT` (conT ''Identity `appT` (tupleT 1 `appT` (tupleT 0))) + ======> + Identity (Solo ()) -> Identity (Solo ()) +T18612.hs:12:4-36: Splicing pattern + conP 'Identity [tupP [tupP []]] ======> Identity (Solo()) +T18612.hs:12:41-78: Splicing expression + conE 'Identity `appE` tupE [tupE []] ======> Identity (Solo ()) diff --git a/testsuite/tests/th/all.T b/testsuite/tests/th/all.T index 6d4a5036d7..e53b0d872a 100644 --- a/testsuite/tests/th/all.T +++ b/testsuite/tests/th/all.T @@ -513,3 +513,4 @@ test('T18102b', extra_files(['T18102b_aux.hs']), compile_and_run, ['']) test('T18121', normal, compile, ['']) test('T18123', normal, compile, ['']) test('T18388', normal, compile, ['']) +test('T18612', normal, compile, ['']) |