﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
3327	Redeclare enumeration doesn't work	Maksimov Doe	somebody	"
{{{
model Ex
  class Foo1
    extends Foo(redeclare type T = enumeration(One, Two));
  end Foo1;
  parameter Foo1.T f;
end Ex;

partial class Foo
  replaceable type T = enumeration(:);
end Foo;
}}}

I get the flattening model with empty enumeration T:
{{{
class Ex
  parameter enumeration() f;
end Ex;
}}}

And for ''partial class Foo replaceable type T = enumeration(One); end Foo;'' I get:
{{{
class Ex
  parameter enumeration(One) f;
end Ex;
}}}

As you can see redeclaration doesn't affect enumeration T at all."	defect	closed	high	1.9.3	Frontend	trunk	fixed		
