fork download
  1. import qualified Prelude
  2. import Prelude hiding (Maybe)
  3.  
  4. class Maybe a
  5.  
  6. newtype Just a = Just a
  7. data Nothing a = Nothing
  8.  
  9. instance Maybe (Just a)
  10. instance Maybe (Nothing a)
  11.  
  12. main = print "ok"
Success #stdin #stdout 0.01s 5520KB
stdin
Standard input is empty
stdout
"ok"