singletons-2.4: tests/compile-and-dump/Singletons/Star.hs
{-# OPTIONS_GHC -Wno-unused-imports #-}
module Singletons.Star where
import Data.Singletons.Prelude
import Data.Singletons.Decide
import Data.Singletons.CustomStar
import Singletons.Nat
import Data.Kind
data Vec :: Type -> Nat -> Type where
VNil :: Vec a Zero
VCons :: a -> Vec a n -> Vec a (Succ n)
$(singletonStar [''Nat, ''Int, ''String, ''Maybe, ''Vec])