[351] Unresolved Reference Extracting Superclass
Given the following:
public abstract class Bar
{
protected delegate void Proc();
protected Dictionary<Guid, Proc> actions = new Dictionary<Guid, Proc>();
}
Extracting all members to a new superclass gives the following:
public class Foo
{
protected delegate void Proc();
protected Dictionary<Guid, Proc> actions = new Dictionary<Guid, UNRESOLVED>();
}
The dictionary seems to loose the reference to the delegate. Anyone else
seen this?
Thanks
Sean
Please sign in to leave a comment.
Hello,
We appreciate your feedback.
The corresponding JIRA request has been created, and you are welcome to monitor
its status at http://www.jetbrains.net/jira/browse/RSRP-36108.
Best regards,
- Development Team.