summaryrefslogtreecommitdiff
path: root/testsuite/tests/typecheck/should_run/tcrun038.hs
blob: 26337cdb95e6e465aa1809f4e939e60e0b142e05 (plain)
1
2
3
4
5
6
7
8
module Main where

import TcRun038_B( Foo(..), bar )

instance Foo Int where
  op x = x+1

main = print (bar (3::Int))