summaryrefslogtreecommitdiff
path: root/testsuite/tests/ghc-api/annotations/InTreeAnnotations1.hs
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/tests/ghc-api/annotations/InTreeAnnotations1.hs')
-rw-r--r--testsuite/tests/ghc-api/annotations/InTreeAnnotations1.hs8
1 files changed, 8 insertions, 0 deletions
diff --git a/testsuite/tests/ghc-api/annotations/InTreeAnnotations1.hs b/testsuite/tests/ghc-api/annotations/InTreeAnnotations1.hs
new file mode 100644
index 0000000000..c454b0a237
--- /dev/null
+++ b/testsuite/tests/ghc-api/annotations/InTreeAnnotations1.hs
@@ -0,0 +1,8 @@
+{-# LANGUAGE ViewPatterns, BangPatterns #-}
+module InTreeAnnotations1 where
+
+foo a@(_,_) !"a" ~x = undefined
+
+data T = MkT { x,y :: Int }
+
+f (MkT { x = !v, y = negate -> w }) = v + w