summaryrefslogtreecommitdiff
path: root/utils/check-exact/cases/AddLocalDecl1.hs
blob: 3bb4953c51e89df1fe46ef28ded16fa00ab58322 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
module AddLocalDecl1 where

-- |This is a function
foo = x -- comment1
-- trailing 1

-- |Another fun
x = a -- comment2
  where
    a = 3
-- trailing 2

y = 3