packages feed

liquidhaskell-0.8.10.1: tests/pos/T598.hs

{-# LANGUAGE DeriveGeneric #-}

module T598 where

import GHC.Generics (Generic)
import Control.DeepSeq (NFData(..))

data Point = Point
    { x :: Int
    } deriving (Generic)

instance NFData Point