blob: 4a61cdbcf4a0cc3a933966f9445861b7608342cd (
plain)
1
2
3
4
5
6
7
8
9
|
{-# LANGUAGE GADTs, TypeFamilies, DataKinds, PolyKinds #-}
module T8449a where
data Lst a = Nil | Cons a (Lst a)
data family SList (a :: k)
data instance SList (a :: Lst k) where
SNil :: SList 'Nil
|