summaryrefslogtreecommitdiff
path: root/testsuite/tests/pmcheck/should_compile/T18533.hs
blob: 3b4fdf8b8944afbd890a26243d65603ff1de5d8e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{-# OPTIONS_GHC -Wincomplete-patterns -fforce-recomp #-}
{-# LANGUAGE GADTs, DataKinds, TypeFamilies, BangPatterns #-}

module T18533 where

data SBool (b :: Bool) where
  STrue  :: SBool 'True
  SFalse :: SBool 'False

type family Fam (b :: Bool)
type instance Fam 'True = T

data T = T Bool

f :: Fam b -> SBool b -> Bool
f !t s = case s of
    STrue -> a where a = case t of T a -> a
    _     -> False


g :: Bool -> Bool
g x = case x of
  True -> a where a = case x of True -> False
  False -> True