summaryrefslogtreecommitdiff
path: root/ghc/compiler/deSugar/DsUtils.lhs
diff options
context:
space:
mode:
authorsimonpj@microsoft.com <unknown>2006-02-09 17:53:28 +0000
committersimonpj@microsoft.com <unknown>2006-02-09 17:53:28 +0000
commit3c245de9199f522f75ace92219256badbd928bd6 (patch)
tree85ed31c4c83c8a09e523463427eb696c1f1bab8e /ghc/compiler/deSugar/DsUtils.lhs
parentfebd6d9a765b22b982ec229f1f2426d1b5958232 (diff)
downloadhaskell-3c245de9199f522f75ace92219256badbd928bd6.tar.gz
Fix desugaring of unboxed tuples
This patch is a slightly-unsatisfactory fix to desugaring unboxed tuples; it fixes ds057 which has been failing for some time. Unsatisfactory because rather ad hoc -- but that applies to lots of the unboxed tuple stuff.
Diffstat (limited to 'ghc/compiler/deSugar/DsUtils.lhs')
-rw-r--r--ghc/compiler/deSugar/DsUtils.lhs2
1 files changed, 1 insertions, 1 deletions
diff --git a/ghc/compiler/deSugar/DsUtils.lhs b/ghc/compiler/deSugar/DsUtils.lhs
index b42bd7dbd7..29e7773bb8 100644
--- a/ghc/compiler/deSugar/DsUtils.lhs
+++ b/ghc/compiler/deSugar/DsUtils.lhs
@@ -31,7 +31,7 @@ module DsUtils (
dsSyntaxTable, lookupEvidence,
- selectSimpleMatchVarL, selectMatchVars
+ selectSimpleMatchVarL, selectMatchVars, selectMatchVar
) where
#include "HsVersions.h"