X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=ghc%2Ftests%2FdeSugar%2Fshould_compile%2Fds026.hs;fp=ghc%2Ftests%2FdeSugar%2Fshould_compile%2Fds026.hs;h=0000000000000000000000000000000000000000;hb=16acb4976514ab4b03c79d6845e3f0e98a1a33cf;hp=f21ca0b18bafd5556e5e00d01403c2bf23386fd9;hpb=f2eadfd5dfb23cc611e2540f46180bca7d095f15;p=ghc-hetmet.git diff --git a/ghc/tests/deSugar/should_compile/ds026.hs b/ghc/tests/deSugar/should_compile/ds026.hs deleted file mode 100644 index f21ca0b..0000000 --- a/ghc/tests/deSugar/should_compile/ds026.hs +++ /dev/null @@ -1,14 +0,0 @@ --- !!! ds026 -- classes -- incl. polymorphic method - -module ShouldCompile where - -class Foo a where - op :: a -> a - -class Foo a => Boo a where - op1 :: a -> a - -class Boo a => Noo a where - op2 :: (Eq b) => a -> b -> a - -f x y = op (op2 x y)