dddaabd66f2c716deb7f740853950c18baf41605
[ghc-hetmet.git] / ghc / tests / codeGen / should_run / cg002.hs
1 main = print ((f id2) (10 + thirty_two))
2   where
3     f x = g x
4       where
5         g x = h x
6           where
7             h x = x
8
9     thirty_two :: Int
10     thirty_two = 32
11
12 id2 x = x