1 2 3 4 5 6 7
{-# LANGUAGE TemplateHaskell #-} module T2386_Lib(ExportedAbstract, makeOne) where data ExportedAbstract = Yay String | NonYay Bool makeOne = [| Yay "Yep" |]