summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/concurrent/should_run/conc072.hs
blob: 8f1218084c4e4134ff368e99d01a3ff3a7a5be5f (plain)
1
2
3
4
5
6
7
8
9
module Main where

import Control.Concurrent

main = do
  t <- forkOn 0 (return ())
  threadCapability t >>= print
  t <- forkOn 1 (return ())
  threadCapability t >>= print