id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc	os	architecture	failure	difficulty	testcase	blockedby	blocking	related
286	GADTs Syntax Infelicity with {;}	ashley-y	nobody	"{{{
GHC doesn't like semicolons at the end of GADT constructor lists:

data Foo a where
{
  BoolFoo :: Bool -> Foo Bool;
  IntFoo :: Int -> Foo Int;
}

Workaround: remove the last semicolon:

data Foo a where
{
  BoolFoo :: Bool -> Foo Bool;
  IntFoo :: Int -> Foo Int
}

}}}"	bug	closed	normal		Compiler (Parser)	6.4	Fixed										
