summaryrefslogtreecommitdiff
path: root/testsuite/tests/concurrent/should_run/allocLimit1.hs
blob: b1c8fa6035bca1679bced078f21f109e8d171629 (plain)
1
2
3
4
5
6
7
8
9
module Main (main) where

import GHC.Conc

main = do
  setAllocationCounter (10*1024)
  enableAllocationLimit
  print (length [1..])