summaryrefslogtreecommitdiff
path: root/testsuite/tests/profiling/should_run/scc004.hs
blob: bdb73d83abb201aa5ad5cbe9f3aa32e78e89aad0 (plain)
1
2
3
4
5
6
7
8
9
10
{-# NOINLINE f #-}
f :: Int -> Int
f = {-# SCC f #-} g

{-# NOINLINE g #-}
g :: Int -> Int
g x = {-# SCC g #-} x + 1

main = {-# SCC main #-} return $! f 3