allenwq (Allen Wang)
- Login: allenwq
- Email: rovingbreeze@gmail.com
- Registered on: 07/22/2015
- Last sign in: 07/22/2015
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]
...