summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghci/scripts/T12007.hs
blob: c678727b57acae372116f36f4e797052849cc055 (plain)
1
2
3
4
5
6
7
{-# LANGUAGE PatternSynonyms #-}
module T12007 where

data Foo a = Foo a a

pattern A a1 a2 = Foo a1 a2
pattern B a1 a2 = A a1 a2