Closed Bodigrim closed 1 year ago
CLC has approved the proposal to add {-# WARNING #-} to Data.List.{head,tail} (https://github.com/haskell/core-libraries-committee/issues/87). It means that usage of head and tail will emit compile-time warnings.
{-# WARNING #-}
Data.List.{head,tail}
head
tail
GHC boot packages must compile with GHC HEAD without any warnings, so this PR eliminates them.
Thanks!
CLC has approved the proposal to add
{-# WARNING #-}
toData.List.{head,tail}
(https://github.com/haskell/core-libraries-committee/issues/87). It means that usage ofhead
andtail
will emit compile-time warnings.GHC boot packages must compile with GHC HEAD without any warnings, so this PR eliminates them.