From 6ef0bc6c1c112a73615c5bddeb8c0fbadd557ff7 Mon Sep 17 00:00:00 2001 From: simonpj Date: Tue, 27 Jul 1999 07:30:00 +0000 Subject: [PATCH] [project @ 1999-07-27 07:30:00 by simonpj] Add rnfail018 --- ghc/tests/rename/should_fail/rnfail018.hs | 15 +++++++++++++++ ghc/tests/rename/should_fail/rnfail018.stderr | 15 +++++++++++++++ 2 files changed, 30 insertions(+) create mode 100644 ghc/tests/rename/should_fail/rnfail018.hs create mode 100644 ghc/tests/rename/should_fail/rnfail018.stderr diff --git a/ghc/tests/rename/should_fail/rnfail018.hs b/ghc/tests/rename/should_fail/rnfail018.hs new file mode 100644 index 0000000..223751c --- /dev/null +++ b/ghc/tests/rename/should_fail/rnfail018.hs @@ -0,0 +1,15 @@ +{-# OPTIONS -fglasgow-exts #-} + +module ShouldFail where + +-- !!! For-all with parens + +-- This one crashed ghc-4.04proto; the parens after the for-all fooled it + +class Monad m => StateMonad s m where + getState :: m s + +setState0 :: forall b. (StateMonad (a,b) m => m a) +setState0 = getState >>= \ (l,_r) -> return l + + diff --git a/ghc/tests/rename/should_fail/rnfail018.stderr b/ghc/tests/rename/should_fail/rnfail018.stderr new file mode 100644 index 0000000..9e02aad --- /dev/null +++ b/ghc/tests/rename/should_fail/rnfail018.stderr @@ -0,0 +1,15 @@ + +rnfail018.hs:12: + The constrained type variable `b' does not appear in the type `m a' + In the type signature for `setState0' + +rnfail018.hs:12: Type variable not in scope: `a' + +rnfail018.hs:12: Type variable not in scope: `m' + +rnfail018.hs:12: Type variable not in scope: `m' + +rnfail018.hs:12: Type variable not in scope: `a' + +Compilation had errors + -- 1.7.10.4