summaryrefslogtreecommitdiff
path: root/testsuite/tests/driver/inline-check.hs
blob: 83112e12263b8f58ebf1d847ac30856e00d44823 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
module InlineCheck where

foo = (+1)

foo1 = (+1)
{-# NOINLINE foo1 #-}

qux = foo 3

qux1 = foo1 3

too = qux