[commit: ghc] master: Fix interaction of record pattern synonyms and record wildcards (2d6642b)
git at git.haskell.org
git at git.haskell.org
Sun Oct 2 00:02:06 UTC 2016
Repository : ssh://git@git.haskell.org/ghc
On branch : master
Link : http://ghc.haskell.org/trac/ghc/changeset/2d6642bd1956edf8b842c07d78e83c500246998a/ghc
>---------------------------------------------------------------
commit 2d6642bd1956edf8b842c07d78e83c500246998a
Author: Matthew Pickering <matthewtpickering at gmail.com>
Date: Sat Oct 1 17:55:04 2016 -0400
Fix interaction of record pattern synonyms and record wildcards
We were missing an appropiate *ConLike lookup in the case when
the pattern synonym was defined in a different module.
Reviewers: austin, bgamari, simonpj
Reviewed By: simonpj
Subscribers: simonpj, thomie
Differential Revision: https://phabricator.haskell.org/D2544
GHC Trac Issues: #11987
>---------------------------------------------------------------
2d6642bd1956edf8b842c07d78e83c500246998a
compiler/rename/RnEnv.hs | 4 ++--
testsuite/tests/patsyn/should_compile/T11987.hs | 12 ++++++++++++
testsuite/tests/patsyn/should_compile/T11987a.hs | 9 +++++++++
testsuite/tests/patsyn/should_compile/all.T | 3 ++-
4 files changed, 25 insertions(+), 3 deletions(-)
diff --git a/compiler/rename/RnEnv.hs b/compiler/rename/RnEnv.hs
index 63b1f1f..37e389e 100644
--- a/compiler/rename/RnEnv.hs
+++ b/compiler/rename/RnEnv.hs
@@ -462,9 +462,9 @@ lookupConstructorFields con_name
; traceTc "lookupCF" (ppr con_name $$ ppr (lookupNameEnv field_env con_name) $$ ppr field_env)
; return (lookupNameEnv field_env con_name `orElse` []) }
else
- do { con <- tcLookupDataCon con_name
+ do { con <- tcLookupConLike con_name
; traceTc "lookupCF 2" (ppr con)
- ; return (dataConFieldLabels con) } }
+ ; return (conLikeFieldLabels con) } }
-----------------------------------------------
-- Used for record construction and pattern matching
diff --git a/testsuite/tests/patsyn/should_compile/T11987.hs b/testsuite/tests/patsyn/should_compile/T11987.hs
new file mode 100644
index 0000000..eab3316
--- /dev/null
+++ b/testsuite/tests/patsyn/should_compile/T11987.hs
@@ -0,0 +1,12 @@
+{-# LANGUAGE NamedFieldPuns, PatternSynonyms, RecordWildCards #-}
+module T11987 where
+
+import T11987a
+
+-- works
+namedFieldPuns :: (Int,Int)
+namedFieldPuns = let { x = 1; y = 2 } in Point { x, y }
+
+-- error: Pattern synonym ‘Point’ used as a data constructor
+recordWildCards :: (Int,Int)
+recordWildCards = let { x = 1; y = 2 } in Point { .. }
diff --git a/testsuite/tests/patsyn/should_compile/T11987a.hs b/testsuite/tests/patsyn/should_compile/T11987a.hs
new file mode 100644
index 0000000..c381c2b
--- /dev/null
+++ b/testsuite/tests/patsyn/should_compile/T11987a.hs
@@ -0,0 +1,9 @@
+{-# LANGUAGE NamedFieldPuns, PatternSynonyms, RecordWildCards #-}
+module T11987a where
+
+pattern Point :: Int -> Int -> (Int, Int)
+pattern Point{x, y} = (x, y)
+
+-- works
+sameFile :: (Int,Int)
+sameFile = let { x = 1; y = 2 } in Point { .. }
diff --git a/testsuite/tests/patsyn/should_compile/all.T b/testsuite/tests/patsyn/should_compile/all.T
index 7551eb9..1297d8c 100644
--- a/testsuite/tests/patsyn/should_compile/all.T
+++ b/testsuite/tests/patsyn/should_compile/all.T
@@ -58,4 +58,5 @@ test('T12094', normal, compile, [''])
test('T11977', normal, compile, [''])
test('T12108', normal, compile, [''])
test('T12484', normal, compile, [''])
-test('T12489', normal, compile, [''])
+test('T11987', normal, multimod_compile, ['T11987', '-v0'])
+
More information about the ghc-commits
mailing list