packages feed

haskell-tools-builtin-refactorings-1.0.0.0: examples/Refactor/GenerateExports/Operators.hs

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

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

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