ghc-exactprint-1.14.1.0: tests/examples/transform/InstanceGraft.hs.expected
module InstanceGraft where
combine :: Int -> Int -> Int
combine a b = a
+ b
class C t where
go :: t -> Int
go n = a
+ b
instance C Int where
go n = a
+ b
module InstanceGraft where
combine :: Int -> Int -> Int
combine a b = a
+ b
class C t where
go :: t -> Int
go n = a
+ b
instance C Int where
go n = a
+ b