diff options
Diffstat (limited to 'testsuite/tests/concurrent/should_run/conc072.hs')
-rw-r--r-- | testsuite/tests/concurrent/should_run/conc072.hs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/testsuite/tests/concurrent/should_run/conc072.hs b/testsuite/tests/concurrent/should_run/conc072.hs new file mode 100644 index 0000000000..8f1218084c --- /dev/null +++ b/testsuite/tests/concurrent/should_run/conc072.hs @@ -0,0 +1,9 @@ +module Main where + +import Control.Concurrent + +main = do + t <- forkOn 0 (return ()) + threadCapability t >>= print + t <- forkOn 1 (return ()) + threadCapability t >>= print |