summaryrefslogtreecommitdiff
path: root/testsuite/tests/parser/should_compile/EmptyDecls.hs
blob: 9583f23e3241de343504160b6c0dbc2410c71b19 (plain)
1
2
3
4
5
6
7
8
9
module Main where {

f x = x;
;
;
g y z = z;

main = print (g (f False) (f True));
}