packages feed

plugins-1.0: testsuite/makewith/unsafeio/api/API.hs

{-# OPTIONS -fglasgow-exts #-}

module API where

import Data.Dynamic

data Unsafe = Unsafe { 
                field :: String 
        }
   deriving (Typeable, Show)

unsafe :: Unsafe
unsafe = Unsafe { field = "default value" }