module GHC.JustDoIt ( JustDoIt, justDoIt, (…) ) where

class JustDoIt a where justDoIt' :: a

justDoIt :: JustDoIt a => a
justDoIt :: a
justDoIt = a
forall a. JustDoIt a => a
justDoIt'

(…) :: JustDoIt a => a
… :: a
(…) = a
forall a. JustDoIt a => a
justDoIt'