diff options
author | Hécate <hecate+gitlab@glitchbra.in> | 2021-01-07 22:53:12 +0100 |
---|---|---|
committer | Marge Bot <ben+marge-bot@smart-cactus.org> | 2021-01-27 17:40:32 -0500 |
commit | 08fba093bb0b9e186cad9e35e3f58397456c7b4a (patch) | |
tree | 630a6c9f1e42b5aa926379a39d9f4fedd1fbd137 /testsuite/tests | |
parent | 5d6009a88156ad42b387383e41a7e0707c7f06a4 (diff) | |
download | haskell-08fba093bb0b9e186cad9e35e3f58397456c7b4a.tar.gz |
Remove -XMonadFailDesugaring references
Diffstat (limited to 'testsuite/tests')
-rw-r--r-- | testsuite/tests/driver/T4437.hs | 4 | ||||
-rw-r--r-- | testsuite/tests/simplCore/should_run/T3591.hs | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/testsuite/tests/driver/T4437.hs b/testsuite/tests/driver/T4437.hs index c83d29b03d..78d552c6cd 100644 --- a/testsuite/tests/driver/T4437.hs +++ b/testsuite/tests/driver/T4437.hs @@ -53,4 +53,6 @@ expectedCabalOnlyExtensions = ["Generics", "SafeImports", "Safe", "Unsafe", - "Trustworthy"] + "Trustworthy", + "MonadFailDesugaring" + ] diff --git a/testsuite/tests/simplCore/should_run/T3591.hs b/testsuite/tests/simplCore/should_run/T3591.hs index fc49c00cdb..09724fef62 100644 --- a/testsuite/tests/simplCore/should_run/T3591.hs +++ b/testsuite/tests/simplCore/should_run/T3591.hs @@ -20,7 +20,7 @@ -- | Module "Trampoline" defines the pipe computations and their basic building blocks. {-# LANGUAGE ScopedTypeVariables, Rank2Types, MultiParamTypeClasses, - TypeFamilies, KindSignatures, FlexibleContexts, NoMonadFailDesugaring, + TypeFamilies, KindSignatures, FlexibleContexts, FlexibleInstances, OverlappingInstances, UndecidableInstances #-} |