From 16514f272fb42af6e9c7674a9bd6c9dce369231f Mon Sep 17 00:00:00 2001 From: David Terei Date: Wed, 20 Jul 2011 11:09:03 -0700 Subject: Move tests from tests/ghc-regress/* to just tests/* --- .../tests/typecheck/should_compile/Tc170_Aux.hs | 24 ++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 testsuite/tests/typecheck/should_compile/Tc170_Aux.hs (limited to 'testsuite/tests/typecheck/should_compile/Tc170_Aux.hs') diff --git a/testsuite/tests/typecheck/should_compile/Tc170_Aux.hs b/testsuite/tests/typecheck/should_compile/Tc170_Aux.hs new file mode 100644 index 0000000000..c7cd186f13 --- /dev/null +++ b/testsuite/tests/typecheck/should_compile/Tc170_Aux.hs @@ -0,0 +1,24 @@ + +module Tc170_Aux where + +class ReadMode mode + +data Attr m w a = Attr (w -> IO a) (w -> a -> IO ()) + +mapAttr :: ReadMode m => (a -> b) -> (a -> b -> a) -> Attr m w a -> Attr m w b +mapAttr get set (Attr getter setter) + = Attr (\w -> do a <- getter w; return (get a)) + (\w b -> do a <- getter w; setter w (set a b)) + + +data Rect = Rect +data Point = Point +topLeft = undefined +rectMoveTo = undefined + +class Dimensions w where + frame :: ReadMode m => Attr m w Rect + + position :: ReadMode m => Attr m w Point + position = mapAttr (\f -> topLeft f) (\f p -> rectMoveTo p f) frame + -- cgit v1.2.1