File: Compile.hs

package info (click to toggle)
haskell-time-compat 1.9.8-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 504 kB
  • sloc: haskell: 7,036; makefile: 3
file content (18 lines) | stat: -rw-r--r-- 316 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
-- Tests succeed if module compiles
{-# LANGUAGE GeneralizedNewtypeDeriving #-}

module Test.Format.Compile (

) where

{-
import Data.Time.Compat

newtype WrappedUTCTime
    = MkWrappedUTCTime UTCTime
    deriving (FormatTime, ParseTime)

newtype Wrapped t
    = MkWrapped t
    deriving (FormatTime, ParseTime)
-}