Wolfgang Jeltsch pushed to branch wip/jeltsch/base-buildable-with-ghc-9-14 at Glasgow Haskell Compiler / GHC Commits: f6bcebb0 by Wolfgang Jeltsch at 2026-05-19T21:25:21+03:00 Strengthen the Safe-Haskell annotation of `GHC.IO.Handle` - - - - - 1 changed file: - libraries/base/src/GHC/IO/Handle.hs Changes: ===================================== libraries/base/src/GHC/IO/Handle.hs ===================================== @@ -1,5 +1,9 @@ {-# LANGUAGE CPP #-} +#if __GLASGOW_HASKELL__ < 1000 {-# LANGUAGE Trustworthy #-} +#else +{-# LANGUAGE Safe #-} +#endif {-# LANGUAGE RecordWildCards #-} -- | View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/f6bcebb0c1b26572b7ee4cc4258b3356... -- View it on GitLab: https://gitlab.haskell.org/ghc/ghc/-/commit/f6bcebb0c1b26572b7ee4cc4258b3356... You're receiving this email because of your account on gitlab.haskell.org.
participants (1)
-
Wolfgang Jeltsch (@jeltsch)