summaryrefslogtreecommitdiff
path: root/testsuite/tests/th/T10891.stderr
diff options
context:
space:
mode:
authorÖmer Sinan Ağacan <omeragacan@gmail.com>2015-09-23 13:19:58 -0500
committerAustin Seipp <austin@well-typed.com>2015-09-23 13:20:52 -0500
commit5c115236fe795aa01f0c10106f1b1c959486a739 (patch)
tree36314780a6af4b8906dab5921a621533d37b0bad /testsuite/tests/th/T10891.stderr
parent453cdbfcea6962d0a2b5f532b5cdf53d5f82143d (diff)
downloadhaskell-5c115236fe795aa01f0c10106f1b1c959486a739.tar.gz
reify associated types when reifying typeclasses
As reported in Trac #10891, Template Haskell's `reify` was not generating Decls for associated types. This patch fixes that. Note that even though `reifyTyCon` function used in this patch returns some type instances, I'm ignoring that. Here's an example of how associated types are encoded with this patch: (Simplified representation) class C a where type F a :: * --> OpenTypeFamilyD "F" ["a"] With default type instances: class C a where type F a :: * type F a = a --> OpenTypeFamilyD "F" ["a"] TySynInstD "F" (TySynEqn [VarT "a"] "a") Reviewed By: goldfire Differential Revision: https://phabricator.haskell.org/D1254 GHC Trac Issues: #10891
Diffstat (limited to 'testsuite/tests/th/T10891.stderr')
-rw-r--r--testsuite/tests/th/T10891.stderr12
1 files changed, 12 insertions, 0 deletions
diff --git a/testsuite/tests/th/T10891.stderr b/testsuite/tests/th/T10891.stderr
new file mode 100644
index 0000000000..874f4f0890
--- /dev/null
+++ b/testsuite/tests/th/T10891.stderr
@@ -0,0 +1,12 @@
+class T10891.C (a_0 :: *)
+ where T10891.f :: forall (a_0 :: *) . T10891.C a_0 =>
+ a_0 -> GHC.Types.Int
+class T10891.C' (a_0 :: *)
+ where type T10891.F (a_0 :: *) :: *
+ type T10891.F a_0 = a_0
+ T10891.f' :: forall (a_0 :: *) . T10891.C' a_0 =>
+ a_0 -> GHC.Types.Int
+instance T10891.C' GHC.Types.Int
+class T10891.C'' (a_0 :: *)
+ where data T10891.Fd (a_0 :: *) :: *
+instance T10891.C'' GHC.Types.Int