summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdam Gundry <adam@well-typed.com>2022-08-17 20:49:24 +0100
committerMarge Bot <ben+marge-bot@smart-cactus.org>2022-09-13 10:28:29 -0400
commit08f6730cd04ae9cdba30c0e371522ddc9a25b716 (patch)
treee5d4402edeb411866293b834b045b78211c9a61b
parent362cca13858faf7e1158273780ea900e7dad5827 (diff)
downloadhaskell-08f6730cd04ae9cdba30c0e371522ddc9a25b716.tar.gz
Allow imports to reference multiple fields with the same name (#21625)
If a module `M` exports two fields `f` (using DuplicateRecordFields), we can still accept import M (f) import M hiding (f) and treat `f` as referencing both of them. This was accepted in GHC 9.0, but gave rise to an ambiguity error in GHC 9.2. See #21625. This patch also documents this behaviour in the user's guide, and updates the test for #16745 which is now treated differently.
-rw-r--r--compiler/GHC/Rename/Names.hs30
-rw-r--r--docs/users_guide/exts/duplicate_record_fields.rst9
-rw-r--r--testsuite/tests/overloadedrecflds/should_compile/T21625.hs5
-rw-r--r--testsuite/tests/overloadedrecflds/should_compile/T21625B.hs6
-rw-r--r--testsuite/tests/overloadedrecflds/should_compile/all.T1
-rw-r--r--testsuite/tests/overloadedrecflds/should_fail/T16745.stderr18
-rw-r--r--testsuite/tests/overloadedrecflds/should_fail/T16745A.hs8
7 files changed, 54 insertions, 23 deletions
diff --git a/compiler/GHC/Rename/Names.hs b/compiler/GHC/Rename/Names.hs
index 597936fbe5..dce4daa562 100644
--- a/compiler/GHC/Rename/Names.hs
+++ b/compiler/GHC/Rename/Names.hs
@@ -1165,7 +1165,7 @@ Suppose we have:
data T = mkT { foo :: Int }
module N where
- import M (foo) -- this is an ambiguity error (A)
+ import M (foo) -- this is allowed (A)
import M (S(foo)) -- this is allowed (B)
Here M exports the OccName 'foo' twice, so we get an imp_occ_env where 'foo'
@@ -1176,8 +1176,8 @@ names (see Note [FieldLabel] in GHC.Types.FieldLabel).
, $sel:foo:MKT -> (foo, T(foo), Nothing)
]
-Then when we look up 'foo' in lookup_name for case (A) we get both entries and
-hence report an ambiguity error. Whereas in case (B) we reach the lookup_ie
+Then when we look up 'foo' in lookup_names for case (A) we get both entries and
+hence two Avails. Whereas in case (B) we reach the lookup_ie
case for IEThingWith, which looks up 'S' and then finds the unique 'foo' amongst
its children.
@@ -1252,13 +1252,21 @@ filterImports iface decl_spec (Just (want_hiding, L l import_items))
isAvailTC AvailTC{} = True
isAvailTC _ = False
+ -- Look up a RdrName used in an import, failing if it is ambiguous
+ -- (e.g. because it refers to multiple record fields)
lookup_name :: IE GhcPs -> RdrName -> IELookupM (Name, AvailInfo, Maybe Name)
- lookup_name ie rdr
+ lookup_name ie rdr = do
+ xs <- lookup_names ie rdr
+ case xs of
+ [cax] -> return cax
+ _ -> failLookupWith (AmbiguousImport rdr (map sndOf3 xs))
+
+ -- Look up a RdrName used in an import, returning multiple values if there
+ -- are several fields with the same name exposed by the module
+ lookup_names :: IE GhcPs -> RdrName -> IELookupM [(Name, AvailInfo, Maybe Name)]
+ lookup_names ie rdr
| isQual rdr = failLookupWith (QualImportError rdr)
- | Just succ <- mb_success = case nonDetNameEnvElts succ of
- -- See Note [Importing DuplicateRecordFields]
- [(c,a,x)] -> return (greNameMangledName c, a, x)
- xs -> failLookupWith (AmbiguousImport rdr (map sndOf3 xs))
+ | Just succ <- mb_success = return $ map (\ (c,a,x) -> (greNameMangledName c, a, x)) (nonDetNameEnvElts succ)
| otherwise = failLookupWith (BadImport ie)
where
mb_success = lookupOccEnv imp_occ_env (rdrNameOcc rdr)
@@ -1311,9 +1319,11 @@ filterImports iface decl_spec (Just (want_hiding, L l import_items))
lookup_ie ie = handle_bad_import $
case ie of
IEVar _ (L l n) -> do
- (name, avail, _) <- lookup_name ie $ ieWrappedName n
+ -- See Note [Importing DuplicateRecordFields]
+ xs <- lookup_names ie (ieWrappedName n)
return ([(IEVar noExtField (L l (replaceWrappedName n name)),
- trimAvail avail name)], [])
+ trimAvail avail name)
+ | (name, avail, _) <- xs ], [])
IEThingAll _ (L l tc) -> do
(name, avail, mb_parent) <- lookup_name ie $ ieWrappedName tc
diff --git a/docs/users_guide/exts/duplicate_record_fields.rst b/docs/users_guide/exts/duplicate_record_fields.rst
index aa842e7b4f..0a7504c399 100644
--- a/docs/users_guide/exts/duplicate_record_fields.rst
+++ b/docs/users_guide/exts/duplicate_record_fields.rst
@@ -57,4 +57,11 @@ However, this would not be permitted, because ``x`` is ambiguous: ::
module M (x) where ...
-The same restrictions apply on imports.
+For ``import`` statements, it is possible to import multiple fields with the
+same name, as well as importing individual fields as part of their datatypes.
+For example, the following imports are allowed: ::
+
+ import M (S(x)) -- imports the type S and the 'x' field of S (but not the field of T)
+ import M (x) -- imports both 'x' fields
+ import M hiding (S(x)) -- imports everything except the type S and its 'x' field
+ import M hiding (x) -- imports everything except the two 'x' fields
diff --git a/testsuite/tests/overloadedrecflds/should_compile/T21625.hs b/testsuite/tests/overloadedrecflds/should_compile/T21625.hs
new file mode 100644
index 0000000000..125b16cc27
--- /dev/null
+++ b/testsuite/tests/overloadedrecflds/should_compile/T21625.hs
@@ -0,0 +1,5 @@
+module T21625 where
+
+import T21625B hiding (B, f)
+
+c = C 'x'
diff --git a/testsuite/tests/overloadedrecflds/should_compile/T21625B.hs b/testsuite/tests/overloadedrecflds/should_compile/T21625B.hs
new file mode 100644
index 0000000000..3e39398f08
--- /dev/null
+++ b/testsuite/tests/overloadedrecflds/should_compile/T21625B.hs
@@ -0,0 +1,6 @@
+{-# LANGUAGE DuplicateRecordFields #-}
+
+module T21625B where
+
+data B = B {f :: Int}
+data C = C {f :: Char}
diff --git a/testsuite/tests/overloadedrecflds/should_compile/all.T b/testsuite/tests/overloadedrecflds/should_compile/all.T
index dd5660b445..fc56b23fab 100644
--- a/testsuite/tests/overloadedrecflds/should_compile/all.T
+++ b/testsuite/tests/overloadedrecflds/should_compile/all.T
@@ -11,3 +11,4 @@ test('T18999_FieldSelectors', normal, compile, [''])
test('T19154', normal, compile, [''])
test('T20723', normal, compile, [''])
test('T20989', normal, compile, [''])
+test('T21625', [], multimod_compile, ['T21625', '-v0'])
diff --git a/testsuite/tests/overloadedrecflds/should_fail/T16745.stderr b/testsuite/tests/overloadedrecflds/should_fail/T16745.stderr
index 6e1cac2fbe..61a9567788 100644
--- a/testsuite/tests/overloadedrecflds/should_fail/T16745.stderr
+++ b/testsuite/tests/overloadedrecflds/should_fail/T16745.stderr
@@ -3,12 +3,12 @@
[3 of 4] Compiling T16745D ( T16745D.hs, T16745D.o )
[4 of 4] Compiling T16745A ( T16745A.hs, T16745A.o )
-T16745A.hs:3:24: error:
- Ambiguous name ‘field’ in import item. It could refer to:
- T16745C.field
- T16745B.R(field)
-
-T16745A.hs:4:24: error:
- Ambiguous name ‘foo’ in import item. It could refer to:
- T16745D.T(foo)
- T16745D.S(foo)
+T16745A.hs:8:9: error:
+ Ambiguous occurrence ‘field’
+ It could refer to
+ either the field ‘field’ of record ‘T16745B.R’,
+ imported from ‘T16745B’ at T16745A.hs:3:24-28
+ (and originally defined at T16745B.hs:11:14-18)
+ or ‘T16745B.field’,
+ imported from ‘T16745B’ at T16745A.hs:3:24-28
+ (and originally defined in ‘T16745C’ at T16745C.hs:2:1-5)
diff --git a/testsuite/tests/overloadedrecflds/should_fail/T16745A.hs b/testsuite/tests/overloadedrecflds/should_fail/T16745A.hs
index 49dbeb3fac..b64d87b6c7 100644
--- a/testsuite/tests/overloadedrecflds/should_fail/T16745A.hs
+++ b/testsuite/tests/overloadedrecflds/should_fail/T16745A.hs
@@ -1,6 +1,8 @@
module T16745A where
-import T16745B hiding (field)
-import T16745D hiding (foo)
+import T16745B (field) -- imports both 'field's
+import T16745D hiding (foo) -- allowed, hides both 'foo' fields
-wrong = foo -- should not be in scope
+foo = foo
+
+wrong = field -- ambiguous which 'field' is meant