packages feed

haskell-tools-builtin-refactorings-1.0.0.0: examples/Decl/LocalBindings.hs

module Decl.LocalBindings where

f x = g x
  where g :: Int -> Int
        g = id
        
f' x | even x = g x
  where g :: Int -> Int
        g = id