summaryrefslogtreecommitdiff
path: root/testsuite/tests/module/MultiExport.hs
blob: 4f8079ee817c19ececd8976053a3748806e7194e (plain)
1
2
3
4
5
6
{-# LANGUAGE PatternSynonyms #-}
module Foo ( A(x, x) ) where

data A = A  Int

pattern Pattern{x} = A x