diff --git a/hoogle-test/ref/Bug873/test.txt b/hoogle-test/ref/Bug873/test.txt deleted file mode 100644 index 6887331746..0000000000 --- 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 (f x) means the same as (f $ x). --- However, $ has low, right-associative binding precedence, so it --- sometimes allows parentheses to be omitted; for example: --- ---
---   f $ g $ h x  =  f (g (h x))
---   
--- --- It is also useful in higher-order situations, such as map --- ($ 0) xs, or zipWith ($) fs xs. --- --- Note that ($) is levity-polymorphic in its result --- type, so that foo $ True where foo :: Bool -> --- Int# 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 3a9a538367..0000000000 --- a/hoogle-test/src/Bug873/Bug873.hs +++ /dev/null @@ -1,5 +0,0 @@ -module Bug873 (($), ($$)) where -infixr 0 $$ - -($$) :: (a -> b) -> a -> b -f $$ x = f x