Priority
Show-stopper
Type
Bug 
State
Fixed 
Assignee
Andrey Simanovsky 
Subsystem
No subsystem 
Affected versions
Fixed in
Fixed in build
Next build 
  • Submitted by   Andrey Simanovsky
    2 years ago (15 Jun 2007 16:48)
  • Updated by Andrey Simanovsky
    2 years ago (16 Jul 2007 15:25)
  • Jira: RSRP-43381
    (history, comments)

RSRP-43381

Daemon hangs

1
  class A<T> : A<T[]>, IEquatable<A<T>>
  {
    public bool Equals(A<T> a)
    {
      if (a == null) return false;
      return true;
    }

    public override bool Equals(object obj)
    {
      if (ReferenceEquals(this, obj)) return true;
      return Equals(obj as A<T>);
    }

    public override int GetHashCode()
    {
      return 0;
    } // Press Alt+Ins
  }


Issue was closed
Comments (0)
 
History (0)
 
Links
 
Issue has no comments