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

newtype P a = P (IO a) deriving Monad