blob: 18c50dfab83bc33a2f5a2f473aca347b531035de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
{-# LANGUAGE Safe #-}
-- | Import unsafe module Control.ST to make sure it fails
module Main where
import Control.Monad.ST
f :: Int
f = 2
main :: IO ()
main = putStrLn $ "X is: " ++ show f
|