summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghci/scripts/T19462.script
blob: 19ae18b0d36a0ad5e94ddfce50cb573636962100 (plain)
1
2
3
4
5
6
7
8
9
:set -XPatternSynonyms -XNoFieldSelectors
pattern P{x,y} = (x,y)
:info P
:info x
:info y
pattern V = ()
:info V
pattern a `C` b = (a,b)
:info C