ghc-exactprint-0.6.4: tests/examples/ghc90/ExplicitSpecificity4.hs
{-# LANGUAGE DefaultSignatures #-}
{-# LANGUAGE ScopedTypeVariables #-}
module ExplicitSpecificity4 where
class C a where
f :: forall {z}. z -> a -> a
default f :: forall {z}. z -> a -> a
f _ x = x
g :: forall z. z -> a -> a
g _ x = x