packages feed

haskell-tools-refactor-0.4.1.1: examples/Refactor/GenerateExports/Operators.hs

{-# LANGUAGE TypeOperators #-}
module Refactor.GenerateExports.Operators where

(|=>|) :: Int -> Int -> Int
a |=>| b = a + b

data a :+: b = a :+: b