summaryrefslogtreecommitdiff
path: root/testsuite/tests/rename/should_compile/T3371.hs
blob: 9b3d4459f90bb7ee6fc701d16f310b00cc40ed81 (plain)
1
2
3
4
5
6
7
8
9
10
{-# LANGUAGE RecordWildCards #-}
{-# OPTIONS_GHC -fwarn-unused-matches #-}

-- Should warn about the unused 'a', but not about the unused 'c'

module T3371(bar) where

data Foo = Foo { a,b,c :: Int } deriving(Eq)

bar Foo{ a = a, ..} = print b