diff options
Diffstat (limited to 'testsuite/tests/printer/Test21355.hs')
-rw-r--r-- | testsuite/tests/printer/Test21355.hs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/testsuite/tests/printer/Test21355.hs b/testsuite/tests/printer/Test21355.hs new file mode 100644 index 0000000000..b8929604b2 --- /dev/null +++ b/testsuite/tests/printer/Test21355.hs @@ -0,0 +1,11 @@ +{-# LANGUAGE GADTs #-} +{-# LANGUAGE TemplateHaskell #-} +module Test21355 where + +emptyBK = [d| {} |] + +data GitHubSignedReqBody'' + (proxy :: KProxy k) + (key :: k) + (list :: [Type]) + (result :: Type) where |