summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/rename/prog004/A.hs
blob: 23fe5bb187d5472565b2fd841ae9bc8f0b58b719 (plain)
1
2
3
4
5
6
module A(foo, Bar(..)) where

foo :: Bar
foo = MkBar 42

data Bar = MkBar Int