summaryrefslogtreecommitdiff
path: root/testsuite/tests/rename/should_compile/T1954.hs
blob: 210be399df257a8ddc77d5b60ad72e8bf9b0c250 (plain)
1
2
3
4
5
6
{-# LANGUAGE GeneralizedNewtypeDeriving #-}
{-# OPTIONS_GHC -Wall -Werror #-}
module Bug(P) where

newtype P a = P (IO a) deriving (Functor, Applicative, Monad)