id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	os	architecture	failure	difficulty	testcase	blockedby	blocking	related
1385	(1,True) == (2,False) doesn't compile	igloo	simonpj	"This module:
{{{
module Foo where

foo = (1,True) == (2,False)
}}}
currently fails to compile:
{{{
    No instance for (Eq (t, Bool))
      arising from a use of `==' at q.hs:4:6-26
    Possible fix: add an instance declaration for (Eq (t, Bool))
    In the expression: (1, True) == (2, False)
    In the definition of `foo': foo = (1, True) == (2, False)
}}}
but this does compile:
{{{
module Foo where

foo = 1 == 2
}}}"	bug	closed	high	6.8.1	Compiler (Type checker)	6.7	fixed			Unknown/Multiple	Unknown/Multiple		Unknown	tc049, tc227			
