haskell-tools-refactor-0.4.1.1: examples/Refactor/ExtractBinding/Records.hs
module Refactor.ExtractBinding.Records where
data Point = Point { x :: Double, y :: Double }
d = (\(Point {x = x, y = y}) -> x + y) (Point 1 2)
module Refactor.ExtractBinding.Records where
data Point = Point { x :: Double, y :: Double }
d = (\(Point {x = x, y = y}) -> x + y) (Point 1 2)