Skip to content

Commit

Permalink
Merge pull request #4830 from melted/fix_ghc_86
Browse files Browse the repository at this point in the history
Fix build on GHC 8.6
  • Loading branch information
melted committed Mar 19, 2020
2 parents 87577e3 + c14f72f commit ccbdb4b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Idris/Core/TT.hs
Original file line number Diff line number Diff line change
Expand Up @@ -325,7 +325,7 @@ bindTC x k = case x of
instance Monad TC where
return x = OK x
x >>= k = bindTC x k
#if !(MIN_VERSION_base(4,12,0))
#if !(MIN_VERSION_base(4,13,0))
fail = Fail.fail
#endif

Expand Down

0 comments on commit ccbdb4b

Please sign in to comment.