blob: 0bccacef91305d3d7bd8450f7e0c23465ae5689e (
plain)
1
2
3
4
5
6
7
8
|
{-# OPTIONS_GHC -funbox-strict-fields #-}
module T5252Take2a ( WriteMessage(..) , WriteDevice ) where
import qualified Data.ByteString as ByteString
data WriteMessage = WriteMessage !WriteDevice
newtype WriteDevice = WriteDevice ByteString.ByteString
|