haskell-tools-builtin-refactorings-1.0.0.0: examples/Refactor/GenerateExports/Operators_res.hs
{-# LANGUAGE TypeOperators #-}
module Refactor.GenerateExports.Operators ((|=>|), (:+:)(..)) where
(|=>|) :: Int -> Int -> Int
a |=>| b = a + b
data a :+: b = a :+: b