summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-regress/concurrent/should_run/conc009.hs
blob: 94c7809332b4aa772c502cfdb28c59c43c84cde0 (plain)
1
2
3
4
5
6
7
8
9

module Main where

import Control.Concurrent
import Control.Exception

main = do 
  id <- myThreadId
  throwTo id (ErrorCall "hello")