packages feed

haskell-tools-builtin-refactorings-1.0.1.1: test/ExtensionOrganizerTest/KindSignaturesTest/InTypeFamily.hs

{-# LANGUAGE TypeFamilies #-}

module InTypeFamily where

type family F a :: * where  {-* KindSignatures *-}
  F () = ()
  F _  = ()                 {-* TypeFamilies *-}