From: simonpj Date: Mon, 30 Apr 2001 11:23:28 +0000 (+0000) Subject: [project @ 2001-04-30 11:23:28 by simonpj] X-Git-Tag: Approximately_9120_patches~2061 X-Git-Url: http://git.megacz.com/?a=commitdiff_plain;h=6de3825726442ffdd667d44833702a63d0506f4c;p=ghc-hetmet.git [project @ 2001-04-30 11:23:28 by simonpj] Fix test so that it doesnt use undecidable instances --- diff --git a/ghc/tests/typecheck/should_compile/tc109.hs b/ghc/tests/typecheck/should_compile/tc109.hs index 133aac1..a57b3fb 100644 --- a/ghc/tests/typecheck/should_compile/tc109.hs +++ b/ghc/tests/typecheck/should_compile/tc109.hs @@ -8,7 +8,7 @@ module ShouldCompile where class P a class R a b | b->a -instance (P a,R a b) => P b +instance (P a,R a b) => P [b] {- GHC 4.08.1 doesn't seem to allow variables in the context that don't appear after the =>, but which are still ok since they are