haskell-src-exts-1.14.0: Test/examples/DoubleHashOp.hs
{-# LANGUAGE UnboxedTuples #-}
module DoubleHashOp where
(##) :: a -> b -> Int
a ## b = 0
(#*) :: a -> b -> Int
a #* b = 1
-- This still does not work though:
-- (#) :: a -> b -> Int
-- a # b = 2