﻿id	summary	reporter	owner	description	type	status	priority	component	version	resolution	keywords	cc
284	Cannot have multiple forward declarations of a polymorphic type	mlbrooks		"{{{
forall (T&) struct S;
forall (T&) struct S;
}}}
Expected: Allowed
Actual: Compilation error on second declaration, ""invalid type qualifier for forall""

{{{
forall (T&) struct S;
forall (U&) struct S;
}}}
Expected: Allowed
Actual: Compilation error on second declaration, ""invalid type qualifier for forall""

{{{
forall (T&) struct S;
forall (U&) struct S { U * x; };
}}}
Actual and Expected: Allowed
"	defect	new	minor	cfa-cc	1.0			
