summaryrefslogtreecommitdiff
path: root/testsuite/tests/driver/T11182.hs
blob: a8bedf482e5c7857ffcf73382bc60efe35f83ed9 (plain)
1
2
3
4
5
6
7
8
9
10
{-# LANGUAGE Strict #-}
-- | Strict should imply StrictData
module Main where

data Lazy a = Lazy ~a

main :: IO ()
main =
  case Lazy undefined of
    Lazy _ -> putStrLn "Lazy"