summaryrefslogtreecommitdiff
path: root/utils/check-exact/cases/AddDecl1.hs
blob: 45c0cb386454fec375496d726f3004a6e6824e9b (plain)
1
2
3
4
5
6
7
8
9
10
11
module AddDecl where

-- Adding a declaration to an existing file

-- | Do foo
foo a b = a + b

-- | Do bar
bar x y = {- baz -} foo (x+y) x

-- end of file