summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsheaf <sam.derbyshire@gmail.com>2023-03-30 10:32:53 +0000
committerMarge Bot <ben+marge-bot@smart-cactus.org>2023-03-30 14:37:09 -0400
commit6f885e6575eb741556d6e198d1a9dbdadf10307b (patch)
tree5ce519fbb311d6e189805dc0020cf92b6373b011
parent930edcfd10f00d98c746f2198d59546034943ac6 (diff)
downloadhaskell-6f885e6575eb741556d6e198d1a9dbdadf10307b.tar.gz
Add LANGUAGE GADTs to GHC.Rename.Env
We need to enable this extension for the file to compile with ghc 9.2, as we are pattern matching on a GADT and this required the GADT extension to be enabled until 9.4.
-rw-r--r--compiler/GHC/Rename/Env.hs2
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/GHC/Rename/Env.hs b/compiler/GHC/Rename/Env.hs
index 9155a86bf0..cd7379b136 100644
--- a/compiler/GHC/Rename/Env.hs
+++ b/compiler/GHC/Rename/Env.hs
@@ -1,5 +1,5 @@
-
{-# LANGUAGE FlexibleContexts #-}
+{-# LANGUAGE GADTs #-}
{-# LANGUAGE MultiWayIf #-}
{-# LANGUAGE TypeApplications #-}