packages feed

haskell-tools-builtin-refactorings-1.0.0.0: examples/Refactor/RenameDefinition/NameClash.hs

module Refactor.RenameDefinition.NameClash where

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

        h :: Int -> Int
        h = id

test = f