diff options
Diffstat (limited to 'testsuite/tests/printer/Ppr017.hs')
-rw-r--r-- | testsuite/tests/printer/Ppr017.hs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/testsuite/tests/printer/Ppr017.hs b/testsuite/tests/printer/Ppr017.hs new file mode 100644 index 0000000000..091ffee048 --- /dev/null +++ b/testsuite/tests/printer/Ppr017.hs @@ -0,0 +1,9 @@ +{-# LANGUAGE PatternSynonyms #-} +{-# LANGUAGE ExplicitNamespaces #-} +module Imports( f, type (+), pattern Single ) where + +import GHC.TypeLits + +pattern Single x = [x] + +f = undefined |