packages feed

haskell-tools-refactor-0.4.1.1: examples/Refactor/RenameDefinition/LocalFunction_res.hs

module Refactor.RenameDefinition.LocalFunction where

f :: Int -> Int
f = g
  where g :: Int -> Int
        g = id


g :: Int -> Int
g = id