summaryrefslogtreecommitdiff
path: root/testsuite/tests/plugins/T20218b.hs
blob: c6215356e70dc9ec9c2cdc5b1cb8bf04a9513938 (plain)
1
2
3
4
5
6
7
8
9
module Main where

{-# NOINLINE wiz #-}
wiz :: Int -> Int
wiz x = x + 10

main = do
  print (wiz 5)
  return ()