General

Profile

allenwq (Allen Wang)

Issues

open closed Total
Assigned issues 0 0 0
Reported issues 0 1 1

Activity

07/22/2015

02:54 AM Ruby Bug #11385 (Rejected): `==` with bidirectional/cyclic dependency
```ruby
class Something
attr_accessor :friend
def initialize(friend)
self.friend = friend
end
def ==(other)
friend == other.friend
end
end
a = Something.new([])
b = Something.new([a])
a.friend = [b]
...
allenwq (Allen Wang)

Also available in: Atom