aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHécate Moonlight <hecate+github@glitchbra.in>2022-05-06 18:44:57 +0200
committerHécate Moonlight <hecate+github@glitchbra.in>2022-05-06 18:44:57 +0200
commit5d0a0edc31b8c20cc2e1cc234a0394a3bfba5f9b (patch)
tree65c0f04b01963524d2cab633bc6cbbc43a4b091e
parentb07b5ab2546160dfef8ba40102521a8c93f15727 (diff)
remove Bug873
-rw-r--r--hoogle-test/ref/Bug873/test.txt27
-rw-r--r--hoogle-test/src/Bug873/Bug873.hs6
2 files changed, 0 insertions, 33 deletions
diff --git a/hoogle-test/ref/Bug873/test.txt b/hoogle-test/ref/Bug873/test.txt
deleted file mode 100644
index 68873317..00000000
--- a/hoogle-test/ref/Bug873/test.txt
+++ /dev/null
@@ -1,27 +0,0 @@
--- Hoogle documentation, generated by Haddock
--- See Hoogle, http://www.haskell.org/hoogle/
-
-@package test
-@version 0.0.0
-
-module Bug873
-
--- | Application operator. This operator is redundant, since ordinary
--- application <tt>(f x)</tt> means the same as <tt>(f <a>$</a> x)</tt>.
--- However, <a>$</a> has low, right-associative binding precedence, so it
--- sometimes allows parentheses to be omitted; for example:
---
--- <pre>
--- f $ g $ h x = f (g (h x))
--- </pre>
---
--- It is also useful in higher-order situations, such as <tt><a>map</a>
--- (<a>$</a> 0) xs</tt>, or <tt><a>zipWith</a> (<a>$</a>) fs xs</tt>.
---
--- Note that <tt>(<a>$</a>)</tt> is levity-polymorphic in its result
--- type, so that <tt>foo <a>$</a> True</tt> where <tt>foo :: Bool -&gt;
--- Int#</tt> is well-typed.
-($) :: forall (r :: RuntimeRep) a (b :: TYPE r). (a -> b) -> a -> b
-infixr 0 $
-($$) :: (a -> b) -> a -> b
-infixr 0 $$
diff --git a/hoogle-test/src/Bug873/Bug873.hs b/hoogle-test/src/Bug873/Bug873.hs
deleted file mode 100644
index 4df1b772..00000000
--- a/hoogle-test/src/Bug873/Bug873.hs
+++ /dev/null
@@ -1,6 +0,0 @@
-{-# LANGUAGE Haskell2010 #-}
-module Bug873 (($), ($$)) where
-infixr 0 $$
-
-($$) :: (a -> b) -> a -> b
-f $$ x = f x