summaryrefslogtreecommitdiff
path: root/testsuite/tests/rename/should_compile/T13064.hs
blob: 6c8d79fb1729e8b870fdff7084fb2fc472b3fe38 (plain)
1
2
3
4
5
6
7
8
{-# OPTIONS_GHC -Wunused-imports #-}
module T13064 where

import Control.Applicative
import Prelude (IO, pure)   -- Import of 'pure' is redundant

foo :: IO ()
foo = () <$ pure ()